Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • hi thanks for your answer, but yet I can’t resolve the problem. I can’t see the button Load More in my page.
    When I inspect the html code, the div with the id=”ajax-load-more” is present but button is not there. any idea? Thanks again

    I need some documentation about how to install step by step, because the available explanation is not enough for me, thanks

    yes I have it

    hi, I’m pretty new in wordpress, I made my own Theme, as I need load more post I install the plugin, I realized this steps, Install the plugin, copy the repeater templete in my index.php, and after copy this after de repeater [ajax_load_more posts_per_page=”3″ scroll=”false” pause=”true” transition=”fade” images_loaded=”true” button_label=”Load Posts”] and nothing happens, i’m doing well, what is my mistake? I have something like that in my index.php

    <div class="row">
            <article>
                <div id="ajax-load-more">
                   <?php while (have_posts()) : the_post(); ?>
    
                    <div <?php if (! has_post_thumbnail() ) { echo ' class="no-img"'; } ?>>
                       <?php if ( has_post_thumbnail() ) { the_post_thumbnail(array(150,150));
                       }?>
                       <h3><a>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
                       <p class="entry-meta">
                           <?php the_time("F d, Y"); ?>
                       </p>
                       <?php the_excerpt(); ?>
                    </div>
                   <?php endwhile;  ?>
               </div>
            </article>
            </div>
            <div class="contain-div-bottom animation col-xs-12 col-sm-12 col-md-12 col-lg-12">
                <div class="navigation">
                     [ajax_load_more posts_per_page="3" scroll="false" pause="true" transition="fade"  images_loaded="true" button_label="Load Posts"]
                </div>
            </div>

    [Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been damaged by the forum’s parser.]

Viewing 4 replies - 1 through 4 (of 4 total)