Thomas Venugopal Posted August 19, 2019 at 10:47 AM Share Posted August 19, 2019 at 10:47 AM 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
Alejandro Posted August 19, 2019 at 11:03 AM Share Posted August 19, 2019 at 11:03 AM This section is only visible with a valid subscription. If you have a valid subscription, please login. Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.