beaver6813
Forum Replies Created
-
Forum: Plugins
In reply to: [Infinite-Scroll] Finding CSS Selectors – I'm Wrong!@buymanthings
I’d go for:Content Selector: #entries
Navigation Selector: .pagination
Next Selector: .pagination .alignleft a:first
Item Selector: #entries .postWith CSS selectors you can be as broad or specific as you like, so whilst you could have stuff like
#entries .post.entry.clearfix.latest
It’s going to be very specific and will most likely break on other pages that might not use exactly the same classes. So I think just specifying “post” is fine. The next page selector has to point to a hyperlink (<\a> tag) so you were close with .alignleft but as you can see above, you need to drill down and specify the “a:first” (first hyperlink inside alignleft).
Let me know if it works, if not then just point me in the direction if your site with infinite-scroll debug set to On.
Forum: Plugins
In reply to: [Infinite-Scroll] increase minimum entities to load@danbig I’ve opened a ticket for this in the main development repo to make the option visible in WordPress:
https://github.com/paulirish/infinite-scroll/issues/389Until then you could manually edit “plugins/infinite-scroll/js/front-end/jquery.infinitescroll.js”
Find:
prefill:falseReplace with:
prefill:trueEdit: Forgot to add, the prefill option will load pages until the browser window is filled. So if the scroll bar is inactive, it will load the next page and so on until it’s not (thus making infinite-scroll work.. 🙂 )
@hendecasyllabic Symlinked plugins are an ongoing issue with the core of WordPress (many plugin developers hit the issue) and whilst their is some progress in WP Trac, we’re still waiting on an official patch/solution (looks like it may be coming in the next version 3.6 or a minor release after):
https://github.com/paulirish/infinite-scroll/pull/306
Alternatively if your solution is different to the above, if you could submit to our Github it’ll be a lot easier to incorporate it into the plugin (all main development happens there).
https://github.com/paulirish/infinite-scroll/issuesThanks for the patch!
Forum: Plugins
In reply to: [Infinite-Scroll] No Support for 'Infinite-Scroll'?@dean_l I’ve been pretty busy as of late so haven’t been actively monitoring the forum, normally WordPress.org sends email to authors with user posts but it seems to have stopped for some reason… Will open a ticket on the main development site so the lead developer knows there’s a high number of support requests on the forum (https://github.com/paulirish/infinite-scroll/issues).
Forum: Plugins
In reply to: [Infinite-Scroll] Doesn't work after last updateThanks for the info, really helps in pinning down the cause of the issue. Will post back when we have a solution!
Forum: Plugins
In reply to: [Infinite-Scroll] Doesn't work after last updateChris,
So it just happens when you go to the homepage of your site? Or when you’re doing something in particular?Forum: Plugins
In reply to: [Infinite-Scroll] Doesn't work after last updateThanks, agree that it looks to be a problem in the source, have raised a ticket on the development repo to track it:
https://github.com/paulirish/infinite-scroll/issues/281Forum: Plugins
In reply to: [Infinite-Scroll] Doesn't work after last update@legno23, what version of WordPress are you using?
Forum: Plugins
In reply to: [Infinite-Scroll] issues after 2.5 upgrade@woktoss
Thanks for the feedback, we’re still working on identifying some of the issues and will be releasing an update shortly that should address some of them (in particular the custom loading image and the quote escaping of the loading/end messages).The 2.5 upgrade has been available in the Github repo for some time now, we’ve just been testing (though obviously not enough) to ensure there weren’t any issues on release. Its a full rewrite of the 2.0b2 branch that aims to make use of WordPress 3.0+ functions to optimize loading times. There aren’t any known security issues with the 2.0b2.121120 version so you’re safe to revert back to that for now.
Forum: Plugins
In reply to: [Infinite-Scroll] issues after 2.5 upgrade@mwinyi Yep a link would be really helpful in debugging, if you could either post on here or message me privately. Are you using a callback to reload the lightbox for new posts?
@sheyshelman Could you either paste the full callback code you’re using for the facebook buttons? (Along with the name of the plugin you’re using?) Need to be able to reproduce on my end before we can fix.
I’ve reproduced the custom image issues and opened some tickets on Github to track them.
Forum: Plugins
In reply to: [Infinite-Scroll] issues after 2.5 upgrade@woktoss I can’t seem to reproduce the selector settings not saving issue, could you give a bit more information? What version of WordPress are you using, any other plugins that might conflict, theme name etc? Also, did you upgrade from the previously latest infinite-scroll plugin?
Forum: Plugins
In reply to: [Infinite-Scroll] issues after 2.5 upgradeHi Guys,
Looking into these issues now, we’ll track it over on the main infinite-scroll Github. (https://github.com/paulirish/infinite-scroll)For the custom load picture, its a bit convoluted at the moment which we need to work on, basically you have to upload the picture and then copy the link WordPress gives you and then paste it into the field next to the upload button… Obviously not the most intuitive way of it working.
For now I’ve created a tag of the prior version at http://downloads.wordpress.org/plugin/infinite-scroll.2.0b2.121120.zip which you should be able to use without any issues.
Forum: Plugins
In reply to: [Infinite-Scroll] Load more buttonHi Romi,
The plugin does support “facebook/twitter” style loading, you just set the scrolling behaviour to “Manual Triggering” in infinite-scroll settings. That means that it won’t load more content until you click the “next” button. To physically get a nice looking load more button you’ll have to modify the themes html/css to add it.
Forum: Plugins
In reply to: [Infinite-Scroll] Another CSS selector issue…Hi Dave,
Are you using the WordPress plugin or inserting the code manually? I ask because at the bottom of the site I can see some javascript for infinite-scroll that doesn’t look like it comes from the plugin (and then I can’t see the plugin code loading). The selectors above look correct though.
One thing to look out for is that infinite-scroll won’t load new content if you can’t physically scroll to the bottom (so if the content doesn’t fill the screen). There is a recent fix in the Github repo but it hasn’t made it to the WordPress plugin yet. For now I’d just set it to load more posts by default (maybe 9) so it fills the screen.
–Sam
Forum: Plugins
In reply to: [Infinite-Scroll] Need help with CSS Selectors@poseidon212 You might be getting it to work by setting it to the selectors below. But it won’t work “nicely” as the post contents aren’t grouped together under one div. For example you have .post2 .clear #rightColumn and .thumbLink but they’re all just floating around in the code below .listing. It’d probably be better to put them all under one div for each post.
content selector: div.listingContainer
posts selector: div.listing
navigation selector: div.navigationbottom
next page selector: div.navigationbottom #nextpage a.nextpostslink