• Related posts doesn’t show next comments. “Display using a custom template file” is ticked but no related posts show up. When “Automatically display related posts” is ticked related posts show up but only under text of article. I’m using Fusion 3.1.2, Yarpp 3.1.6 and wordpress v. 2.9.1. Can you help me fix this problem? Thanks

Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter jami23

    (@jami23)

    For better explaining http://wordpress.digitalnature.ro/fusion/2009/01/21/blabla-test-post/
    Next Comments are Related posts – this doesn’t work for me.

    @jami23 whether you have the “display using custom template file” on or not, you still need to either have the “automatically display related posts” on or call related_posts() from your theme file. Try adding <?php related_posts();?> to your theme where you want it.

    Thread Starter jami23

    (@jami23)

    File yarpp-template-fusion.php is in root of fusion theme wp-content/themes/fusion
    Code of yarpp-template-fusion.php is:

    <?php /*
    
    Example template
    
    Author: mitcho (Michael Yoshitaka Erlewine)
    
    */ 
    
    ?><h3><?php _e("Related Posts","fusion"); ?></h3>
    
    <?php if ($related_query->have_posts()):?>
    
    <ol>
    	<?php while ($related_query->have_posts()) : $related_query->the_post(); ?>
    
    	<li><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a><!-- (<?php the_score(); ?>)--></li>
    
    	<?php endwhile; ?>
    
    </ol>
    
    <?php else: ?>
    
    <p><?php _e("No related posts.","fusion"); ?></p>
    
    <?php endif; ?>

    Where do have I place that code <?php related_posts();?>? Somewhere in yarpp-template-fusion.php? I tried place it into single.php but it doesn’t show under “button” like comments.

    Thread Starter jami23

    (@jami23)

    It works fine now…only thing is that tags must be. Thanks for reply anyway mitchoyoshitaka.

    Thread Starter jami23

    (@jami23)

    But strange is that tags must be! I can’t set do not consider tags. Any idea? It should be something with fusion I guess.

    Thread Starter jami23

    (@jami23)

    Please any help?

    @jami23 it’s possible that when you choose to not consider tags, your match threshold is then too high. Try turning off “consider tags”, then lowering your match threshold to something really low, like 1, and start there.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘[Plugin: Yet Another Related Posts Plugin] Yarpp and fusion theme problem’ is closed to new replies.