Jump to content

jreviews.php Template


Thomas Venugopal

Recommended Posts

I read this doc article https://docs.jreviews.com/?title=How_to_fix_layout_issues_of_JReviews_content_in_certain_WordPress_themes because I do have layout issues on some pages. But my page.php file looks like this:

<?php
/**
 * The template for displaying all pages.
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-page
 */

get_header();

if ($theme->get('builder')) :

    echo get_section('builder');

elseif (have_posts()) :

    while (have_posts()) : the_post();

        get_template_part('templates/post/content', 'page');

        if (comments_open() || get_comments_number()) :
            comments_template();
        endif;

    endwhile;

endif;

get_footer();

 

How do I alter the file to get the desired result?

 

I use a Yootheme template.

Link to comment
×
×
  • Create New...