Shortcode content not displaying on Home page

Why don’t shortcodes work when a post is view on Home page but they do when viewing single post.
You can see the issue here.

There are suppose to be two element’s above the image – generated by JW Player and a custom shortcode, and one shortcode below the image – generated by Lightbox Evolution plugin.

Related posts

Leave a Reply

3 comments

  1. Is the homepage pulling in the_excerpt() ? If so you will have to add this to your functions.php

    add_filter('the_excerpt', 'do_shortcode');
    

    This will work if you are putting in manual excerpt. It shouldn’t be stripping out the shortcode if you are using the_content() in your homepage template.