worldelse
Forum Replies Created
-
Hello,
How i can include this ? Do i need to include this in the template or function.php ?
Thank you for help
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Publicize posting issueHello,
It helps for Twitter when the connection for Twitter was reset. For Facebook i had to disable WP Open Graph to make it work.
Now everything works fine 🙂
Thanks for help
Forum: Plugins
In reply to: [jQuery Pin It Button for Images] Pin it and infinitescroll issueYes true, but in my case because i have a special class for the picture using infinite scroll and i limit the use of the button to this class, it works fine 🙂
Anyway, thanks a lot for your help
Forum: Plugins
In reply to: [jQuery Pin It Button for Images] Pin it and infinitescroll issueHello. I resolved my issue using a php method in order to generate a unique id
I add the attribute data-jpifbi-indexer to my image loading in infinite scroll and using the get_the_id function of wordpress. This function generate an unique id for post.
<a href="<?php the_permalink() ?>"><?php if (has_post_thumbnail()) { the_post_thumbnail('homepage-thumb','data-jpibfi-indexer='.get_the_ID().''); }?>This help if someone experienced the same issue
Forum: Plugins
In reply to: [jQuery Pin It Button for Images] Pin it and infinitescroll issueThanks for your answer.
I hope, one day, we will have an update about this because infinite scroll is used a lot. And your plugin will be perfect with this add feature.
If i still want this to work, do you know witch part of the code from the plugin i have to copy ?
Thanks for your help
Forum: Plugins
In reply to: [jQuery Pin It Button for Images] Pin it and infinitescroll issueAfter investigation, it seems that i have to put something in the callback of my code for infinite scroll in order to have the hover pin it button appear when new content is loaded by infinite scroll. here is my code for infinite scroll
$(document).ready(function(){ var $container = $('#wrapper2'); $container.imagesLoaded(function(){ $container.masonry({ itemSelector: '.pin', singleMode:true, }); }); $container.infinitescroll({ // selector for the paged navigation navSelector : '#navigation', // selector for the NEXT link (to page 2) nextSelector : '#navigation a', // selector for all items you'll retrieve itemSelector : '.pin', debug : true, loading: { msgText:'', img: 'http://i.imgur.com/qkKy8.gif', finishedMsg:'' } }, function( newElements ) { var $newElems = $( newElements ).css({ opacity: 0 }); $newElems.imagesLoaded(function() { $newElems.animate({ opacity: 1 }); $('#wrapper2').masonry( 'appended', $( newElements,true ) ); }); }); });is someone has experienced the same issue ? thanks for your help
No errors but no post are showed.
I have a little clue.
The function category name use the category slug witch have no accent. But how does it word if i want to use the category name only ?