rfgoetz
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-TopBar] TopBar: Set CLOSED as default for all pagesI just pushed 5.03 with this feature.
Forum: Plugins
In reply to: [WP-TopBar] brackets around link custom CSSI just pushed v. 5.03 with this fix.
Forum: Plugins
In reply to: [WP-TopBar] My topbar is gone?Closing – no response in a week.
Forum: Plugins
In reply to: [WP-TopBar] Toolbar Always Showing vs. only when scrollingHmm… I just created a default TopBar, enabled it, turned scrolling on.. and it worked.
I used Chrome.
What browser are you using?
What is your URL? I can see if I can find what the issue may be.Bob
Forum: Plugins
In reply to: [WP-TopBar] TopBar on NON-WordPress Site?Hmm..
You can always create the TopBar on a WordPress site, and then copy/modify the HTML and Java to the non-WordPress site.
Once the HTML/Java is generated, it does not require any WordPress functionality.
Bob
Forum: Plugins
In reply to: [WP-TopBar] brackets around link custom CSSNo worries.. Thanks for finding it. I’ve got that coded up and it will go out in the next release.
I am waiting for 3.6 to be released so I can finish that set of testing.
Bob
Forum: Plugins
In reply to: [WP-TopBar] brackets around link custom CSSYou mean curly brackets, right?
“{” and “}”If you change this (in wp-topbar.php)
echo "{".trim($wptbOptions['custom_css_text'])."}";
to thisecho trim($wptbOptions['custom_css_text']);Does it fix the problem?
Bob
Forum: Plugins
In reply to: [WP-TopBar] TopBar: Set CLOSED as default for all pagesThanks for responding (you’ll be surprised how many people don’t!)
I’ll add this as a feature in a future release.
Bob
Forum: Plugins
In reply to: [WP-TopBar] TopBar: Set CLOSED as default for all pagesOk – try this.
in wp-topbar.php … look for this line of code:
$html_out = " ".$wptbTopBarNumber.": function() {window.setTimeout(function() { wptbbar_show".$wptbTopBarNumber."();}, 0)}";Change it to:
$html_out = " ".$wptbTopBarNumber.": function() {window.setTimeout(function() { wptbbar_hide".$wptbTopBarNumber."();}, 0)}";Let me know if that solves your problem. If it does, I’ll find a way to make that an option you can select.
Forum: Plugins
In reply to: [WP-TopBar] Some minor glitches in a superb pluginFor #2, I *think* I fixed it in version 5.02.
Can you confirm for me?
Bob
Forum: Plugins
In reply to: [WP-TopBar] My topbar is gone?I just pushed out version 5.02 with that fix (and a number of other changes.)
Again, let me know if that fixes it. If not, I need you to email me a SQL extract of your TopBar. I’ll load it on my test site to see if I can find the issue.
My email address can be found in the
wp-topbar.phpfile.Thanks,
Bob
Forum: Plugins
In reply to: [WP-TopBar] Display delayChange of plans — I will push out version 5.02 in a few minutes. It has your new field in it.
Forum: Plugins
In reply to: [WP-TopBar] My topbar is gone?There is an error that I see when I load your website:
Notice: Undefined variable: field in /var/www/web/gb0395/wp-content/plugins/wp-topbar/wp-topbar.php on line 386Line 386 is a simple check to see if a variable is set:
if ( isset($wptbOptions[$field]) )Change $field to
'social_icon'.$i.'_css'and let me know if that fixes the problem:if ( isset($wptbOptions['social_icon'.$i.'_css']) )Bob
Forum: Plugins
In reply to: [WP-TopBar] Display delayOK — I’ve added this as an option in the next release so you don’t have to modify the code for every release.
The next release will come out after WordPress 3.6 comes out.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Display delayAre you asking:
1) Can you display the TopBar in the middle of page? This would be if the page is not scrolled. To do this, use this code in CSS Option C. Change
top:-300pxto move the TopBar up and down the page.position:absolute; top:-300px; bottom:0; left:0; right:0;margin:auto; height:100px; width:100%; z-index: 99999;Or
2) Can you display the TopBar after the user scrolls the page down a set number of pixels? To do this, make sure the Scroll Action is set to on (in the Main Options tab.) Then you have to change the PHP code. Look for this line in wp-topbar.php:
if(jQuery(window).scrollTop()> 0 )Change the “>0” to the number of pixels you want.
Let me know if this answers your question.
Bob