rfgoetz
Forum Replies Created
-
Toby, I checked your site. There is no trace of the TopBar plugin.
Have you cleared your mobile device cache?
See this site on how to do that: https://help.yahoo.com/kb/SLN14733.html
Bob
Forum: Plugins
In reply to: [WP-TopBar] TopBar behave like normal content possible?Closed – no response in a week.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Cookies for Close Button don't seem to be workingThanks, Erik for your help. I’ve pushed out version 5.28 with some changes to fix this.
Bob
Forum: Plugins
In reply to: [WP-TopBar] How to add welcome message to user plus time and date?Closed – no response in a week.
Forum: Plugins
In reply to: [WP-TopBar] TopBar behave like normal content possible?m3110w – yes, on the PHP tab, take the “FIXED” out of the CSS Option C. (See the second example given):
top: 40; padding:0; margin:0; width: 100%; z-index: 99999;mykaytech – there is no option to create a New Google Font on the wp-topbar plugin.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Cookies for Close Button don't seem to be workingA cookie applies to the entire domain .. but is specific to the TopBar being shown. So each TopBar has it’s own cookie.
You have “Enable Cookies” on the Close Tab turned to “Yes”?
Hmmm… the fastest way for me to look at this would be for you to email me your TopBars. Can you export them (SQL format) and email them to me? (my email can be found in wp-topbar.php). I can load them on my test site to see what’s up.
It will take me a few days to get back to you, due to my schedule this week.
Bob
Forum: Plugins
In reply to: [WP-TopBar] How to add welcome message to user plus time and date?See the PHP tab, there is sample code there that shows you how to modify the TopBar based on if the user is logged in. This one adds their name. You can modify this to add time and date:
if ( is_user_logged_in() ) { global $current_user; get_currentuserinfo(); $wptbOptions['bar_text'] = $current_user->display_name.", ". $wptbOptions['bar_text']; }Forum: Plugins
In reply to: [WP-TopBar] Dropdown list doesn't display totallyPerfect!
Forum: Plugins
In reply to: [WP-TopBar] Dropdown list doesn't display totallyYou need to change your CSS.
In your style.min.css, in line 19, you have this:
media="all" input, select { vertical-align: middle; -webkit-appearance: none; }You need this:
media="all" input, select { vertical-align: middle; /* -webkit-appearance: none; */ }That change will allows the select arrows to show on browsers using webkit.
Your CSS file has warning in it:
* Please DO NOT EDIT THIS FILE, if you want to customize the styles, you can create a child theme * See: http://codex.wordpress.org/Child_ThemesSo I would recommend you edit/create a child theme to change this setting.
Let me know if this also works for you.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Topbar Like ThemeforestClosed – no response in a week.
Forum: Plugins
In reply to: [WP-TopBar] Topbar Like ThemeforestYou can try opening the link in a frame and then writing some javascript to change the link to go back to your site.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Not working with Non English languageClosing – no response in over 2 weeks.
Forum: Plugins
In reply to: [WP-TopBar] TopBar Location doesn't workAh! good!
Glad you found it.
Whew!
Bob
Forum: Plugins
In reply to: [WP-TopBar] TopBar Location doesn't workOK — you have a javascript error right after the TopBar’s own javascript is loaded.
SyntaxError: Unexpected token ‘<‘
(anonymous function)wordpress:1029Looks like it might be in the Google Analytics plugin?
That javascript error is causing the TopBar javascript to not work: jQuery(‘.wptbbarheaddiv’).prependTo(‘body’);
Bob
Forum: Plugins
In reply to: [WP-TopBar] WordPress database errors right after installThanks! I found the problem and will upload it at the next patch. The issue was that the plugin kept thinking it had to update its table to add new fields. I fixed how it checked to see if it needed to do an update.