allencg
Forum Replies Created
-
Many thanks for the reply.
The script loading the share icons is sourced offsite:
<script type=”text/javascript” src=”//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-54gfe9adgf2gf443e4″ async></script>Is the almComplete code intended to be added to inline or hosted scripts only? I am not sure how I include this code with this particular script.
Thanks,
Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] Load More but AFTER normal PHPMany thanks. Works well.
Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] Load More but AFTER normal PHPI’ll buy the add-on.
One thing though, how do I log into your site to purchase this using an email and password I used before. There is no where to login because when I check out it says already registered (I bought the repeater add-on earlier). I tried also going through the Plugin page but it takes me to the same cart page unlogged.
Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] Load More but AFTER normal PHPOr without the paged function, which I’ll remove. So I’ll start with:
query_posts( 'posts_per_page=5' );
Then call the Ajax
Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] Installation to custom HTML siteWell well well, that did the trick. Thanks so much!
Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] Installation to custom HTML siteAh no. I don’t call wp_footer()
This is my footer.php. So I could call wp_footer() then?
<div id="side"> <?php get_sidebar();?> </div> <!-- #sidebar1 --> </div> <!-- #mainContent --> <br class="clearfloat" /> <div id="footer"> <?php get_template_part('site_footer'); ?> </div> <!-- #footer --> </div> <!-- #container --> </body> </html>
Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] Installation to custom HTML siteIt does not render anything at all on the screen. So this plugin is good with themes like 2015 etc. rather than custom made themes?
Forum: Fixing WordPress
In reply to: Automatic X level deep breadcrumbsI managed a word-around by installing the Yoast breadcrumbs and it works a treat. No point reinventing the wheel.
Forum: Plugins
In reply to: [Next Page, Not Next Post] Anchor textThat’s perfect. Thanks so much.
I also added %title to be sure and it works fine now.
$nextPage = next_page_not_post('%title', 'false', 'sort_column=post_date&sort_order=desc'); $prevPage = previous_page_not_post('%title', 'true', 'sort_column=post_date&sort_order=desc');