tk_421
Forum Replies Created
-
Checked the plugin today. Looks like everything got resolved.
Forum: Plugins
In reply to: [Infinite-Scroll] [Plugin: Infinite-Scroll] Selectors for AllTuts ThemeUPDATE:
I got the plugin to work with the following selectors
Content Selector: #content
Posts Selector: #content
Navigation Selector: div.navigation
Next Page Selector: div.navigation .alignleft a:firstThe plugin WP-Minify caused the inifinite-scroll plugin to not function. I deactivated it and it worked great.
Awesome! Who did you end up emailing? I had a few questions that I’d like to see if they could answer.
Let me know what you find out. I downloaded the latest unstable version (2.5) from the source repository. It works, but causes some weird wordpress errors with the media library.
Slectors refer to the <div> tags that surround certain sections of your blog. I recommend using a tool like Firebug or Chrome’s Inspect element tool to locate the selectors for your own blog.
Here is a good tutorial on locating selcetors for a typical blog.
I am trying to figure out this plugin and am not having much luck. I think there may be a compatability issue with WordPress 3.4.1
Hope this helps!
Forum: Plugins
In reply to: [Infinite-Scroll] [Plugin: Infinite-Scroll] Selectors for AllTuts ThemeUPDATE: Sorry for the typo
Content CSS Selector: #content
Post CSS Selector: #content
Navigation Links CSS Selector: #content #colLeft .navigation
Previous posts CSS Selector: #content #colLeft .navigation .alignleft a:firstForum: Plugins
In reply to: [Infinite-Scroll] [Plugin: Infinite-Scroll] Selectors for AllTuts ThemeI couldnt get version 2.0b2.120226 working on my wordpress installation so I downloaded version 2.5 from GitHub
I was able to get the new version to work with the following slecetors:
Content CSS Selector: #content
Post CSS Selector: #content
Navigation Links CSS Selector: #content #colLeft .navigationPrevious posts CSS Selector: #content #colLeft .navigation .alignleft a:firstThe new problem is that version 2.5 when activated causes my native wordpress media library to stop functioning. I can see all the entries, but when I click to view them I get a blank screen. Deactivating the plugin fixes the issue. I also noticed that the upload loading image does not seem to take effect either.
Anyone have any luck using 2.5?
Thanks
Forum: Plugins
In reply to: [Infinite-Scroll] [Plugin: Infinite-Scroll] Selectors for AllTuts ThemeOh my. I forgot to post my website.
Forum: Plugins
In reply to: [Infinite-Scroll] [Plugin: Infinite-Scroll] Selectors for AllTuts ThemeI think I understand the structure it’s looking for a little bit more. I updated the plugins, but am still having issues
Content CSS Selector: #content.clearfix
Post CSS Selector: #content.clearfix #colLeft
Navigation Links CSS Selector: #content.clearfix #colLeft .navigation
Previous posts CSS Selector: #content.clearfix #colLeft .navigation .alignleft a:firstI’m also noticing that the plugin doesn’t seem to be loading with the page when I inspect it with chrome ‘Inspect Element’ tool.
Any help would be greatly appreciated. Thanks!
Forum: Plugins
In reply to: [Infinite-Scroll] [Plugin: Infinite-Scroll] Selectors for AllTuts ThemePost CSS Selector: #content.clearfix #colLeft .postBox **
Forum: Plugins
In reply to: [Showtime] [Plugin: Showtime] Forces to top of page, need to add title aboveRand,
I had the same problem. I did some researching and the issue was that the shortcode is ‘echo’-ing instead of ‘return’-ing.
I apologize upfront for my ack of terminology. I’m new to PHP.
You need to edit the showtime.php in the plugin. Look for the function showme_showtime() and comment out the echo line and add the return command with the same content as the echo line.
This is what I did:
function showme_showtime(){ //echo '<div class="now-playing"></div>'; //Comment out this line return '<div class="now-playing"></div>'; //Add this line }This worked for me. I can now add the now-playing shortcode to a widget without it jumping to the top of the page above the title.
Hope this helps.