• Resolved silvergenes

    (@silvergenes)


    Love this template but when trying to do a page, it comes up like a post with a ‘red more’ tag that goes nowhere. How can I fix this so a page displays like a normal static page? Here’s the page

    Any help would be very much appreciated! Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter silvergenes

    (@silvergenes)

    Thread Starter silvergenes

    (@silvergenes)

    Here is the solution suggested by Matt and it worked! On page.php change the code from:

    <?php
    if(is_single()) {
    the_content();
    } elseif (is_archive() || is_category() || is_day() || is_month() || is_year() || is_search() || is_tag()) {
    fp_options(‘typeArchive’);
    } else {
    fp_options(‘typeFront’);
    wp_link_pages(‘before=<div class=”post-pages”>Pages:&after=</div>&next_or_number=number&pagelink=<span>%</span>’);
    } ?>

    TO

    <?php
    if (is_front_page()) {
    fp_options(‘typeFront’);
    wp_link_pages(‘before=<div class=”post-pages”>Pages:&after=</div>&next_or_number=number&pagelink=<span>%</span>’);
    } elseif (is_archive() || is_category() || is_day() || is_month() || is_year() || is_search() || is_tag()) {
    fp_options(‘typeArchive’);
    } else {
    the_content();
    wp_link_pages(‘before=<div class=”post-pages”>Pages:&after=</div>&next_or_number=number&pagelink=<span>%</span>’);
    } ?>

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Renegade page showing ‘more’ tag’ is closed to new replies.