pabagan
Forum Replies Created
-
Forum: Themes and Templates
In reply to: paginate_comments_links() broken on 4.1?Hi guys!! Same issue here!
With the default permalink structure, since you link from first page to any other, all links of the pagination point to the current page.
It works fine if you change to pretty permalinks.
Any fix for that or we need to step back to next/previous comments links?
Forum: Themes and Templates
In reply to: [Highwind] Remove Open Sans and add custom fontsThanks AJ. I tried that function and remove Open Sans stylesheet but also breaks styles from WP Top-bar admin.
Very dissapointed for the default Open Sans loading!!
This here worked for me.
Bests!!
Forum: Plugins
In reply to: [Infinite-Scroll] Infinite Scroll and Masonry – Overlapping ContentI just sort it out!! I found my asnwer in this other topic. I leave here the reponse…
I was loading the plugin in a bad way. The point is loading the script like appears in masonry docs I have the problem @christophzollinger was talking about.Load masonry the simple way:
$(function(){ $('#container').masonry({ // options itemSelector : '.box', columnWidth : 258 }); });And in the settings page of the plugin…in Javascript to be called… add:
var $newElems = $( newElements ).css({ opacity: 0 }); $newElems.imagesLoaded(function(){ $newElems.animate({ opacity: 1 }); $('#container').masonry( 'appended', $newElems, true ); });Just change the selectors.. 🙂
Forum: Plugins
In reply to: [Infinite-Scroll] Infinite Scroll and Masonry – Overlapping Content@christophzollinger I’m facing the same problem you described. I have seen you already sort it out. Could you please explain what did you do??
Thanks!!