RogersPTA
Forum Replies Created
-
Forum: Plugins
In reply to: [Posts in Page] Option to only show sticky posts?Try using [ic_add_posts post_type=’post_type’] and putting sticky in the post type.
Forum: Fixing WordPress
In reply to: Stripped HTML FormattingAha! i fixed this by:
1. The theme option mentioned above (Appearance> Theme Options> Layout)
2. Editing this file: posts-in-page/posts_loop_template.php, and this line of code in that file:<!-- This is the output of the EXCERPT --> <div class="entry-summary"> <?php the_content(); ?>Originally, “the_content()” was “the excerpt()”
Resolved!
Forum: Fixing WordPress
In reply to: Stripped HTML FormattingI found a layout option in “Theme Options” that fixed the problem on the News page. The problem remains so far on the home though.
Also, I’ve noticed that topics in the theme specific forums take a long time to get answered and that general help should be adequate for the time being.
Forum: Themes and Templates
In reply to: [Catch Evolution] How to find index.phpI found it, the file was called Main Index Template and so I over looked it at first.
Forum: Fixing WordPress
In reply to: Index.php/ The LoopThanks, I actually found this quickly after posting. The file was called Main Index Template and so I skipped over it. Resolved!
Forum: Fixing WordPress
In reply to: Stripped HTML FormattingMy code in the loop looks like this:
<?php /* Start the Loop */ ?> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', get_post_format() ); ?> <?php endwhile; ?> <?php catchevolution_content_nav( 'nav-below' ); ?> <?php else : ?> <article id="post-0" class="post no-results not-found"> <header class="entry-header"> <h1 class="entry-title"><?php _e( 'Nothing Found', 'catchevolution' ); ?></h1> </header><!-- .entry-header --> <div class="entry-content"> <p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'catchevolution' ); ?></p> <?php get_search_form(); ?> </div><!-- .entry-content --> </article><!-- #post-0 --> <?php endif; ?> </div><!-- #content --> </div><!-- #primary -->Where do I put “the_content()” and what goes in the parentheses of “the_content()”?
Forum: Themes and Templates
In reply to: [Catch Evolution] Catch Evolution- creating Child pagesIn the pages tab of your WordPress dashboard, create the page you want to be a child. Then on the right hand side, under Page Attributes, choose the parent page. Then save/update your page.