I’m still learning about WordPress so I’m only developing locally. I’m not sure my theme is online. But below is my page template that I’m using with your plug in. I hope that helps. I’m open to changing my template if that would fix the issue too.
<?php
/* Template Name: Text Only Page
@package WordPress
@subpackage aci */
?>
<?php get_header(); ?>
<div class="container" style="background: rgba(128, 128, 128, 0.4)">
<div class="row">
<div id="content" class="textPageContent">
<?php
// TO SHOW THE PAGE CONTENTS
while ( have_posts() ) : the_post(); ?>
<div class="entry-content-page">
<?php the_content(); ?> <!-- Page Content -->
</div><!-- .entry-content-page -->
<?php
endwhile; //resetting the page loop
wp_reset_query(); //resetting the page query
?>
</div><!-- /.content -->
</div> <!-- /.row -->
</div> <!-- /.container -->
<?php get_footer(); ?>
[Moderator note: code fixed. Please wrap code in the backtick character or use the code button.]
-
This reply was modified 6 years, 11 months ago by bdbrown.