douglaskarr
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-Topbar] Top bar only on home pageOne note on this… the plugin is written a bit strange where it actually puts the div within the <head> tags. I was able to overcome this by:
- Changing the published div to
<div id="topbar"> - Adding the following CSS to my style sheet: `#topbar {
position:fixed;
top: 0;
padding: 0;
margin: 0;
width: 100%;
z-index: 99999;
}` - Adding a margin to the top of my page to incorporate the bar.
- Changing the last wp_head command in the Actions and Filters to wp_footer
Now the topbar loads from the bottom of the page using CSS. This avoids the head issue and keeps the content well down the page so it won’t influence search.
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-Topbar] Top bar only on home pageIt totally depends on what your home page is… you can use WordPress to point to any page. The easiest means of finding out is to mouseover the ‘edit’ button in Admin and look at the link displayed. Within the URL, you’ll see the page id listed.
That’s a cool idea, Ramiro. So if someone clicks the sidebar – it will open up the video and autoplay it. Stephen – let’s add that as an option on the next release… default to false, though :).
The thumbnails are actually a hard-coded size from YouTube. I do think we could at least put a percentage so folks could reduce it if needed, though.
Forum: Plugins
In reply to: [Youtube Sidebar Widget] not works with chrome and …This plugin has been tested across all the browsers listed above and works fine. Could you provide the errors or screenshots of what is not working?
Thanks Revanto, that’s a good catch. Interestingly, we’ve seen feedback from other users who didn’t have cURL enabled and required fopen! I agree that cURL is the right way to go, though! We’ll get that in the works…
It would be great if this supported other video hosting sites, such as Vimeo, too.
Forum: Fixing WordPress
In reply to: Firefox redirect loopI’m running into this as well – interestingly enough, only with Firefox and not with Chrome.
Forum: Plugins
In reply to: [Plugin: ChaCha Answers] Total Crap@thecoldspy Thanks again for trying! I really do appreciate when folks find issues like this:
- The header issue was actually me not utilizing
<?phpstandards for calling code in the plugin. I’m not sure why that’s a requirement for WordPress, they really should allow<?instead. I’ve corrected that issue and it’s tested well with other blogs. - The issue with the uninstall was totally a gaff on my fault when checking in the code to the WordPress repository. I wound up uploading the code to a subdirectory and it made a big mess. It’s totally my fault and corrected now – but I really wish WordPress would incorporate some GUI to their repository methodology. It’s too darn easy to make a mistake!
Thanks again for going out of your way and trying it again!
Forum: Plugins
In reply to: [Plugin: ChaCha Answers] Total Crap@thecoldspy – I believe I’ve got all the issues resolved with the latest version. Please give it a try and let me know what you find. Be sure to get an API key from http://developer.chacha.com and add that in the settings!
Thanks!
DougForum: Plugins
In reply to: [Plugin: ChaCha Answers] Total CrapThanks @thecoldspy – we’ve heard this complaint from others and will get this corrected ASAP!
Forum: Fixing WordPress
In reply to: erroneous /comment-page-1 in comment url generated after commentingI was able to add a rewrite rule to my .htaccess file to strip the comment-page-1/ from the URL:
RewriteRule ^(.*)/comment-page-1/ $1/ [R=301,L]Forum: Fixing WordPress
In reply to: is_single() disabled? somehow?My theme is just a modified WordPress Default theme. I don’t use query_posts anywhere in the theme.
Forum: Fixing WordPress
In reply to: is_single() disabled? somehow?I am having the same problem, I can not get is_single to work in any way.
Forum: Plugins
In reply to: If the post date is todayThat was the key, MichaelH! Thanks! I’ve now got a specific class applied to my date on my posts that provides a note that it was ‘Today’. Woohoo!
- Changing the published div to