rfgoetz
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-TopBar] Timestamp errorClosed – no response
Forum: Plugins
In reply to: [WP-TopBar] Center Top Bar contents – responsive to screen widthI played with the margin and the width. With the margin at -650px and the width at 2000px, I get a white bar across my laptop:
position:fixed; top: 40; padding:0; width: 100%; z-index: 99999;margin: 0px 0px 0px -650px; text-align: left; width: 2000px;left: 50%;
Bob
Forum: Plugins
In reply to: [WP-TopBar] Not showing on my pageIn Chrome, goto View | Developer | JavaScript console on your page.
You have an error “Uncaught ReferenceError: jQuery is not defined profollicahairgrowth.com/:512”
The plugin requires the use of jQuery, it looks like somehow your site (via its Theme or from another Plugin) are disabling jQuery. I would first try disabling all plugins except WP-TopBar,
if it starts working, you know you have a plugin issue. Then you just need to try enabling your plugins one-by-one until you find the issue.
If it doesn’t start working after disabling all plugins, try changing to one of the default WordPress themes. It should start working them.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Can't EditAre there any errors being shown in the browser’s developer console?
Do you have any extensions/addons that may be interfering with javascript?
Forum: Plugins
In reply to: [WP-TopBar] Timestamp errorWordPress.org states they only support MySQL (see http://codex.wordpress.org/Database_Description).
There must be something odd with how Percona supports the datestamp functions used to select the TopBar. I would submit a bug report for Percona server.
I don’t have the personal time to instal Perrcona and understand what the issue is.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Timestamp errorWhat DB server / version are you using? MS SQL? mySQL?
Also, go to the General Settings Tab and copy/paste in your reply the “Server/Install Info” that is listed there.
Bob
Forum: Plugins
In reply to: [WP-TopBar] issue with headerClosed – no response in over two weeks.
Forum: Plugins
In reply to: [WP-TopBar] Display Only On Post PagesUpdated the code 5.25 that has this new option.
Forum: Plugins
In reply to: [WP-TopBar] Display Only On Post PagesI just sent you a contact-me message.
The TopBar plugin gets called when the page gets built. So, it is probably in the first post of the Loop and that is what gets triggered when the sharing plugins are fired off.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Display Only On Post PagesI’ve coded up this change. You can now select if you want the TopBar to not show on:
Sticky Posts
Posts
Pages
Archives
Search Pages
404 PagesAre you willing to beta test for me? If so, send me your email address.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Mobile Devices Still Showsclosing – no response in a week.
Forum: Plugins
In reply to: [WP-TopBar] how to chage background image alignment?closing – no response in a week.
Forum: Plugins
In reply to: [WP-TopBar] issue with headerI think you need to add a background color for your theme.
Look here for how we tried to fix it for someone else:
https://wordpress.org/support/topic/change-unused-background-color
Forum: Plugins
In reply to: [WP-TopBar] topbar priority is not workingThe software routine to randomize which TopBar takes the priorities of all TopBars that can be shown and adds them up. Then it generates a random integer between 1 and that total number.
It then loops through those TopBars in descending order of priority and then adds their priorities together to create a cumulative total. When the random integer is greater than the cumulative total, then that TopBar is shown and the loop ends.
In your case, you have Priority of 1 and 2. So, the routine tries to select a random number between 1 and 3. I suspect that 1 is never being shown because the random number generator is selecting 2 or 3 most of the time.
Try changing your priorities of your TopBar to be higher numbers, For example, if you used 100 and 75, then the TopBar with a priority of 100 would be shown about four times as often as the one with the priority of 75.
Or change them both to 100 and randomly have them both show about the same amount of time.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Display Only On Post Pagesare you willing to code a bit of PHP?
If so, open
wp-topbar.php:In function
wptb_check_control_options()Find this statement:
if ( ! is_home() && ( $wptbOptions['show_homepage'] == "only" ) ) { return false;}Add this code right after it:
if ( is_archive() ) { return false; }Let me know if it works, so I can add that as a control option.
Bob