beaver6813
Forum Replies Created
-
Forum: Plugins
In reply to: [Infinite-Scroll] Keep the "No More Posts" message visible?Hi UncleCali,
Unfortunately it’s hard-coded into infinite-scroll jQuery plugin so theres no option to do it nicely. I’ve edited the Javascript source manually to remove the part where it fades out the “finished” message. To use it just use the plugin editor and replace the contents of js/jquery.infinitescroll.min.js with the one below:
http://beaver6813.com/dev/inf-custombrew/jquery.infinitescroll.min.js
Forum: Plugins
In reply to: [Infinite-Scroll] Need some help CSS selectorsOn *is* recommended, it basically means the plugin is turned on for all users. The other options are to have it set to on for visitors only or on for admins only. The idea being that if you’re installing it on an active site you can test it out before going live with it.
Forum: Plugins
In reply to: [Infinite-Scroll] Need some help CSS selectorsHi Romi,
You’ll be wanting:
Content Selector: #main
Item Selector: #main .post
Nav Selector: #main .pagination
Next Page Selector: #main .pagination a.next–Sam
Forum: Plugins
In reply to: [Infinite-Scroll] [Plugin: Infinite-Scroll] need help with CSS Selectors@digitalnative, sounds like its still having a problem somewhere (possibly with the selectors or it could be something else). Is there any way I can see an example of the site?
Forum: Plugins
In reply to: [Infinite-Scroll] [Plugin: Infinite-Scroll] need help with CSS SelectorsYou’ll be wanting:
Content Selector: .narrowcolumn.no
Item Selector: .narrowcolumn.no .post
Nav Selector: #navigation
Next Page Selector: #navigation .nav a:lastI’m not too sure on the next page selector as I don’t know how it formats it on the next page but give it a go and let me know if it works 🙂
Forum: Plugins
In reply to: [Infinite-Scroll] [Plugin: Infinite-Scroll] Please HelpHi Toukie,
Columnizer makes life so difficult! Some guys had some problems with it before, I think we got it resolved:http://ww.wp.xz.cn/support/topic/plugin-infinite-scroll-not-working-2?replies=18
Forum: Plugins
In reply to: [Infinite-Scroll] [Plugin: Infinite-Scroll] Please HelpYou need to implement some sort of pagination (previous posts etc) so infinite-scroll can work. Your best bet would be to start with the default WordPress theme and customize that.
Sorry for the delay!
Content Selector: #load_posts_container
Item Selector: #load_posts_container .home_post_box
Nav Selector: .load_more_cont
Next Page Selector: .load_more_cont p .load_more_text a:first–Sam
Forum: Plugins
In reply to: [Infinite-Scroll] [Plugin: Infinite-Scroll] What are the right selectorsSorry for the delay!
Content Selector: #primary
Item Selector: #primary article
Nav Selector: .post-pagination
Next Page Selector: .post-pagination a:first–Sam
Forum: Plugins
In reply to: [Infinite-Scroll] [Plugin: Infinite-Scroll] SelectorsSorry for the delay!
Content Selector: #main
Item Selector: #main .post
Nav Selector: .nav-entries
Next Page Selector: .nav-next .nav-next a:first–Sam
Content Selector: #content
Item Selector: #content .post
Nav Selector: .previous
Next Page Selector: .previous a:first–Sam
@cpalop, it couldn’t find your navigation with your selectors; give these a go. (sorry for the wait!)
content Selector: #postloop
item Selector: #postloop .copy-pad article
nav Selector: #pagination
next item Selector: #pagination .copy-pad .page-nav-default .previous-entries a:firstForum: Plugins
In reply to: [Infinite-Scroll] [Plugin: Infinite-Scroll] My infiniti scroll is not workingNot sure, it doesn’t look to be an infinite-scroll problem (it loads the posts). Perhaps you’re using some javascript on those elements on page load? In which case you probably need to add some javascript to load after the new posts are loaded to initiate those.
Forum: Plugins
In reply to: [Infinite-Scroll] [Plugin: Infinite-Scroll] My infiniti scroll is not workingYou want:
Content Selector: ul.works
Item Selector: ul.works .mosaic-block
Navigator Selector: div.navigation
Next Page Selector: div.navigation p a:firstIf that still doesn’t work then turn debug on so I can take a closer look.