Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Travis Poole

    (@poolet08)

    Issue was resolved with this:

    For some reason, the “the_content” filter/function in wp wasn’t working properly, It was outputting the whole thing. I overrode the description.php in the theme and manually created the proper output

    Correction:

    <?php the_content(); ?>

    with

    <?php echo wpautop(do_shortcode($post->post_content)); ?>

    Is this anything that needs further inspection?

    Mike W

    (@nixiack8)

    Hi @poolet08,

    This is interesting and looks isolated to the Mingle theme by Parallelus. Be sure if you are requiring theme changes that you have a Child theme set up so the changes are not lost when the theme updates. You can also alert Parallelus to this on their support forums so that they can incorporate this into the theme as well.

    Thread Starter Travis Poole

    (@poolet08)

    Okay thank you!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Product being displayed Twice.’ is closed to new replies.