Theme doesn’t support shortcodes

Your theme has to be removing the shortcodes.

  1. Look for remove_shortcode in the theme’s files, probably functions.php.
  2. Or remove_all_shortcodes.
  3. Or it has to be removing do_shortcodes from the the_content hook. Look for remove_filter('the_content','do_shortcode',10).

If that doesn’t do it, the theme is probably doing something odd with the post content– like bypassing the normal WordPress functions. And fixing that is going to take a lot more information.