Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Contributor Patrick Jackson

    (@pjackson1972)

    Hi, I looked at your site, and I’m not seeing your issue. Did you get it resolved, or am I missing something?

    Thread Starter tropicalsails@yahoo.com

    (@tropicalsailsyahoocom)

    I checked it on three diff browsers and two diff computers and still have it.
    Example:
    http://tropicalsails.com/divina-cruise/

    I already uninstalled the plug in and reinstalled it. I will clear all the caches and try again.

    I will post a link to a pdf with a picture of the problem. I just can’t do it from this laptop.

    Thanks for responding.

    Plugin Author Eric Amundson

    (@sewmyheadon)

    Howdy topicsails,

    I’ve looked at the code output on your divina-cruise page and there’s clearly a problem that’s causing nested <div> tags.

    If you view the source code of the page, you’ll see that the loop isn’t closing a div tag, so each post is displaying as a child of the last post.

    So, I think you have one of a few potential issues:

    1. Your posts-loop-template.php file is messed up, or
    2. You have a <div> in content of your posts that’s not closed correctly, so it’s causing the nesting, or
    3. There’s an issue in your theme template’s HTML that’s contributing.

    Have you customized your posts-loop-template.php file? If so, can you paste the code from it here and we’ll take a look?

    Since the default posts-loop-template.php file displays the_excerpt(); rather than the_content() and the_excerpt() strips HTML, it’s unlikely that the problem is in the excerpt, unless you’ve customized your template.

    I hope that helps!

    Plugin Contributor Patrick Jackson

    (@pjackson1972)

    Ah yes, that second page is telling.

    When I look at the html for that page, I see that the posts are being nested somehow. So, it looks like you may be missing a closing div tag somewhere.

    Did you customize the posts loop template, or do you have some div tags in your content?

    I used this handy div tag checker, and it shows you have a missing closing div tag somewhere.

    Thread Starter tropicalsails@yahoo.com

    (@tropicalsailsyahoocom)

    1 missing closing div tag were found at: http://tropicalsails.com

    I don’t mess with code. And the handy tool tells me I am missing a div tag but nothing is highlighted in yellow.

    I will keep looking and worry about it on the weekend.

    Thread Starter tropicalsails@yahoo.com

    (@tropicalsailsyahoocom)

    It is telling me that Fast Secure Contact Form is the problem..

    | | | | | | | | | | | | | | | | | | | | | | | | | | | |<div style=”clear:both;”>
    | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |</div><!– Fast Secure Contact Form plugin 4.0.34 – end – FastSecureContactForm.com –>
    | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |</div><!– This is the output of the META information –>
    | | | | | | | | | | | | | | | | | | | | |

    Plugin Author Eric Amundson

    (@sewmyheadon)

    There you go, tropicalsails – you found it!

    In the code snippet you posted, there’s an extra closing </div> tag. I’m confident that your issue lies somewhere in your loop template or a theme template.

    Thread Starter tropicalsails@yahoo.com

    (@tropicalsailsyahoocom)

    <!– NOTE: If you need to make changes to this file, copy it to your current theme’s main
    directory so your changes won’t be overwritten when the plugin is upgraded. –>

    <!– Start of Post Wrap –>
    <div class=”post hentry ivycat-post”>
    <!– This is the output of the post TITLE –>
    <h2 class=”entry-title”>“><?php the_title(); ?></h2>

    <!– This is the output of the EXCERPT –>
    <div class=”entry-summary”>
    <?php the_excerpt(); ?>
    </div>

    <!– This is the output of the META information –>
    <div class=”entry-utility”>
    <?php if ( count( get_the_category() ) ) : ?>
    <span class=”cat-links”>
    <?php printf( __( ‘<span class=”%1$s”>Posted in</span> %2$s’, ‘twentyten’ ), ‘entry-utility-prep entry-utility-prep-cat-links’, get_the_category_list( ‘, ‘ ) ); ?>
    </span>
    <span class=”meta-sep”>|</span>
    <?php endif; ?>
    <?php
    $tags_list = get_the_tag_list( ”, ‘, ‘ );
    if ( $tags_list ):
    ?>
    <span class=”tag-links”>
    <?php printf( __( ‘<span class=”%1$s”>Tagged</span> %2$s’, ‘twentyten’ ), ‘entry-utility-prep entry-utility-prep-tag-links’, $tags_list ); ?>
    </span>
    <span class=”meta-sep”>|</span>
    <?php endif; ?>
    <span class=”comments-link”><?php comments_popup_link( __( ‘Leave a comment’, ‘twentyten’ ), __( ‘1 Comment’, ‘twentyten’ ), __( ‘% Comments’, ‘twentyten’ ) ); ?></span>
    <?php edit_post_link( __( ‘Edit’, ‘twentyten’ ), ‘<span class=”meta-sep”>|</span> <span class=”edit-link”>’, ‘</span>’ ); ?>
    </div>
    </div>
    <!– // End of Post Wrap –>

    Thread Starter tropicalsails@yahoo.com

    (@tropicalsailsyahoocom)

    [video src="http://www.fiverr.com/download/MA721AC6C505/original/done.mp4" /]

    He says it is a plug in problem.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Post in page is being spit’ is closed to new replies.