rfgoetz
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Top Bar Not Showing UpI don’t see the debug log. Please paste into a response below.
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Top Bar Not Showing UpLet’s break this down to two issues. 1. Your settings cause the plugin to not work. 2. The Plugin’s CSS does not push the page down for you.
For.1, follow the Debug tab to turn on debug logging. Copy the generated HTML and the debug logging in a response to this message.
For 2, we will tackle when we understand your issue.
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Top Bar Not Showing UpThe plugin does not do that yet; it is in the features backlog.
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Top Bar Not Showing UpOk — I’ll push out a new version in a few days. Thanks for helping me fix this one!
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Top Bar Not Showing UpYour paste above helped. I hacked a functions.php and may have found a long-term fix:
In wp-topbar.php:
Change this:
add_action( ‘init’, array( __CLASS__, ‘wptb_enqueue_jquery’ ) );
add_action(‘wp_footer’, array( __CLASS__, ‘wptb_inject_TopBar_html_js’ ), 15);to:
add_action( ‘wp_enqueue_scripts’, array( __CLASS__, ‘wptb_enqueue_jquery’ ) );
add_action(‘wp_footer’, array( __CLASS__, ‘wptb_inject_TopBar_html_js’ ), 9999999);Reply back to let me know if this worked.
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Top Bar Not Showing UpOptimalC, are you willing let me have admin rights to see if I can find a long-term solution? I don’t have the issue in the 1/2 dozen sites I’ve tested.
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Top Bar Not Showing UpFor some reason, jquery is not defined on your website. I found that by looking at the Chrome Developer console:
/about/integrated-pest-management/:105Uncaught ReferenceError: jQuery is not defined
The plugin forces an enqueue of jquery — but for some reason it is not working on your site. You may have a plugin installed that is de-registering the WordPress default.
Follow these steps to add jquery to your theme until I can figure out a long term solution:
http://ww.wp.xz.cn/support/topic/how-do-i-enqueue-jquery-in-my-theme?replies=6
To change the cookie value, go to the Close Button tab. You will see “Cookie Value” as a setting.
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Top Bar Not Showing UpDid you look at the FAQ or the Debug page?
There is no TopBar HTML being generated on your page.
You are using Caching plugin, did you clear your Cache after you changed the plugin settings? If not, your Cache is old.
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Extra semicolonThe extra semicolon is in there in case the user enters in custom CSS and forgets to add the final semicolon. It causes no harm and is only one extra byte.
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Validation errors and Wp-TopBarAppend &debug to the wp-topbar admin page URL. When you reload the admin page, it will print out a number of messages. Copy all of them into a reply to this thread. The messages tell me how you have configured the topbar.
&debug sets a timer and will show the debug messages on the wp-topbar admin page for about a minute, So, if you remove &debug from the URL, the debug messages will still show up for about a minute. It will also add messages to the WordPress debug log for any page views of your website, if you have debug turned on, for that same time period.
Bob
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Top Bar Not Showing UpYou have entered this script as your Link Text.
That cannot be embedded in the TopBar HTML on your screen since it is embedded in the middle of a
<a>tag. The plugin uses jquery to push the topbar on the page while the preview page does not use jquery.Bob
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Validation errors and Wp-TopBarNiska, that is how the code is written.
See line 64 in v 3.03
add_action(‘wp_footer’, array( __CLASS__, ‘wptb_add_TopBar_Header_html’ ), 15);
Bob
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Validation errors and Wp-TopBarI can’t help with out having more info… what is your website
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Custom htmlTry version 3.03 for the close button.
For Twitter, that is in the backlog of future enhancements.
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Validation errors and Wp-TopBarI moved the HTML from the HEAD tags to prepended to the BODY via javascript. Try version 3.03.