rfgoetz
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-TopBar] Some minor glitches in a superb pluginFor #2 – I found the issue. It is really odd fix. I need to re-order the CSS file so that the fix for a WordPress defect is recognized by the browser. (see http://core.trac.wordpress.org/ticket/23684)
That fix will be in the next version.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Some minor glitches in a superb pluginThanks for the feedback..
Let me try:
1: Use “background-position:right;” in CSS Option A.
2. You must be using IE? That is a JQueryUI bug. I think there is a work around. Let me see if I can find it and put it in the next release.
3. My thinking is that you would use a background image that covers the entire width of the screen (see http://zwebify.com/ for samples). So, if you need a gradient you would put that in your image. That said.. I can fix it — but I have to change how CSS renders the background image/gradient (see http://www.heresonesolution.com/2010/09/using-a-css-gradient-and-a-background-image-on-the-same-element/. I have to do it in a way to not break existing users.
4. Can you send me a screen shot of what you are seeing? I don’t have that issue on the browsers I test with.
5. My hope is that this would reduce support emails! The use cases don’t have everyone starting at the Main Options (you can go directly to any of the Tabs for a TopBar from the All TopBars view) Let me see if there is a way to disable check messages for a time. No promises.Bob
Forum: Plugins
In reply to: [WP-TopBar] How to remove 28px Margin at top so sit directly atopClosing – no response in a week.
Forum: Plugins
In reply to: [WP-TopBar] How to make whole bar a link?Closed – no response in over a week.
Forum: Plugins
In reply to: [WP-TopBar] top bar menuI just pushed 5.01 with the FAQ changes and a few defect fixes.
Forum: Plugins
In reply to: [WP-TopBar] How to remove 28px Margin at top so sit directly atopDid you try this in CSS Option C (adding margin-top:-28px)?
top: 40; padding:0; margin-top:-28px; width: 100%; z-index: 99999;Forum: Plugins
In reply to: [WP-TopBar] top bar menuThanks – .. if you like the plugin, pls give a positive review!
…..
Here is the replacement FAQ that will go into version 5.01:
Create a new menu via the standard WordPress Appearance | Menu. Name it something unique, say “Translation”, to create the menu use the PHP Option (“Before” or “After” – your choice)… using this code:
$defaults = array( 'menu' => 'Translation', 'menu_class' => 'wptb-menu-class', 'container_class' => 'wptb-container-class', 'echo' => 0 ); $menu = wp_nav_menu( $defaults); echo preg_replace("/\r\n|\r|\n/",'',$menu);Then style using .wptb-menu-class or .wptb-container-class (whichever you prefer.)
To make the Menu fancy, you might need to create a custom walker (see http://codex.wordpress.org/Function_Reference/wp_nav_menu) on all the gory details on this WordPress function.
Forum: Plugins
In reply to: [WP-TopBar] top bar menuGot them. I need to change the FAQ to give better instructions. I’ll update in v. 5.01
The issue is that the ‘menu’ name below must MATCH what the Menu name you created on the Appearance | Menu tab.
So, if you new menu is named “Translation” – here is the code you need:
$defaults = array(
‘menu’ => ‘Translation’,
‘menu_class’ => ‘wptb-menu-class’,
‘container_class’ => ‘wptb-container-class’,
‘echo’ => 0
);
$menu = wp_nav_menu( $defaults);
echo preg_replace(“/\r\n|\r|\n/”,”,$menu);Forum: Plugins
In reply to: [WP-TopBar] top bar menuI am on a plane heading home. Can you email me screen shots of the custom php page and the appearance | menu tab? My email address is found in the wp-topbar.php file.
Forum: Plugins
In reply to: [WP-TopBar] top bar menuCan you confirm that you selected the menu you created with the drop down box under theme locations on Menu | Appearance ?
That tells WordPress to use your custom menu on the new location that you created in your functions.php file.
Bob
Forum: Plugins
In reply to: [WP-TopBar] top bar menuI believe that you need to create a custom walker (see http://codex.wordpress.org/Function_Reference/wp_nav_menu) in order to change the menu to horizontal.
I’ve made a fancier, horizontal menu by copying the walker code from my Theme into the wp_nav_menu function.
It is not my expertise…though.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Top bar disappearingClosed due to no response in over a week.
Forum: Plugins
In reply to: [WP-TopBar] Close button leaves a blank white topbarI just pushed version 5.0 with the fix.. and a few more changes.
Forum: Plugins
In reply to: [WP-TopBar] Close button leaves a blank white topbarOk, in wp-topbar.php
Look for this line:
$html_cookie_out .= ' function close_wptopbar'.($x+1).'() { document.getElementById("topbar'.($x+1).'").style.visibility = "hidden";';Change it to:
$html_cookie_out .= ' function close_wptopbar'.($x+1).'() { jQuery("#wptbheadline'.($x+1).'").toggle();';It works on my test site, let me know if it works on your site.
If so, I’ll put it in the next version.
Bob
Forum: Plugins
In reply to: [BulletProof Security] 3.6 Beta issueThanks for the super quick response.