• I just installes and activated the plugin. It seems to work fine with the Visual Composer, I am free to just edit anything. But when it comes to display the new category page, it will only show the original category page instead of the enhanced one. What should I do?

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • i have this same issue.

    did any of you figure this out?
    The plugin is working on the back end, but not showing anything different on the front end.

    You need to edit your taxononomy / category template and include:

    <?php
        global $enhanced_category;
        //get enhanced category post and set it up as global current post
        $enhanced_category->setup_ec_data();
    ?>

    Then it works without issue.

    Template example:

    <?php
        global $enhanced_category;
        //get enhanced category post and set it up as global current post
        $enhanced_category->setup_ec_data();
    ?>
    <!-- enhanced category content -->
    <?php the_post_thumbnail("medium"); ?>
    
    <?php get_template_part( 'content', 'page' ); ?>
    
    <!-- custom fields -->
    <?php
        get_post_custom();
    ?>
    
    <?php
        // If comments are open or we have at least one comment, load up the comment template
        if ( comments_open() || get_comments_number() ) :
            comments_template();
        endif;
    ?>
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Enhancrd categories won’t appear online’ is closed to new replies.