rfgoetz
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Social Buttons wont enableFound the error in wp-topbar-db-io.php
Will be fixed in next version. To manually fix it,
Look for this;
if ( $_GET['tab'] == 'socialbuttons') {change it to
if ( $_GET['action'] == 'socialbuttons') {Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Customize text, how to?Using CSS tabs you should be able to add a HOVER selector to underline the link.
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] My topbar is not working, what do I do?Thanks, Stefano!
Not sure how that bug didn’t hit my various test beds. I just pushed out a fix in 4.02.
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Push down pageOn the TopBar CSS tab, look to see if you have
position:fixed;under the last CSS entry (for the entire TopBar.) If you do, then you are fixing the TopBar at the top of the page. To push the page down, eliminate that CSS.Bob
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Increase height of TopBar?You can use the TopBar CSS options to set custom CSS.
The CSS setting
For the Baris where I would put this:height: 100px;You’ll need to play with padding, etc. if you want to center the TopBar in the larger height.
Bob
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] HTMLReply with some sample HTML and I will see what I can do.
Found the issue.. Fixed in 4.01.
What is your URL?
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] WP-Topbar 4.0: no longer supports qtranslateGreat!
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] WP-Topbar 4.0: no longer supports qtranslateThat is odd — there was no change to how the HTML was created.
I looked up qtranslate and found how to add explicit support for their plugin. I tested it on one of my sites.
This feature will come out in the next release of my plugin.
To patch version 4.00, edit wp-topbar.php.
Look for the function
wptb_display_TopBar. Add the following code:if(function_exists('qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage')) { $wptbOptions['bar_text'] = qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage($wptbOptions['bar_text']); $wptbOptions['bar_link_text'] = qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage($wptbOptions['bar_link_text']); $wptbOptions['bar_link'] = qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage($wptbOptions['bar_link']); }Before this line of code:
echo '<p id="wptbheadline" style="',$wptb_visibility;This should be around line 197.
Let me know if this works for you.
Bob
My bad. That is a defect.
You can get there directly by using this:
YOURURL?page=wp-topbar.php&tab=topbartext
Note.. in the next version you will have the ability to create multiple TopBars. The bad news is that I had to take most of the direct edit links off the admin menu. The good news is that you can setup a topbar with a specific start/stop time. With this update, you could have 7 TopBars, each for a specific day, and then only have to edit once a week.
I am in final testing of this version. If you want to beta test it, let me know.
Forum: Fixing WordPress
In reply to: [WP-TopBar] [Plugin: WP-TopBar] How to Display on Categories PageTry version 3.10, just uploaded. It has a new Control tab with the options you wanted.
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Find page ID of homepageGreg, try version 3.10, just updated. It has the options you need on a new Control tab.
Forum: Plugins
In reply to: [WP-TopBar] Admin Bar Not Working When WP-TopBar isActiveIstiridye found that there was a CSS confict in his settings:
z-index of the admin bar is 1000.
z-index of wp-topbar was 99999.Thus the TopBar was displayed over the admin bar.
He updated it (on the CSS options tab) to 999 and now it doesn’t overlay the admin bar.
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Won't activateTry downloading / installing manually instead of via the wordpress plugin page.
I believe the PSDs I’ve included make the plugin too big for some webservers to download correctly. Will be fixed in the next version.