rfgoetz
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-TopBar] Admin Bar Not Working When WP-TopBar isActiveYes, send me an email. My address is in the plugin’s readme.txt file. I don’t want to post it here.
Forum: Plugins
In reply to: [WP-TopBar] Admin Bar Not Working When WP-TopBar isActiveAre you sure that the image you sent me is from the Admin pages? Because that javascript is only added to non-admin pages.
The error is because javascript cannot find the HTML element “wptbheadline”. That element is only added to non-admin pages when the TopBar will be displayed. It should never show up on an admin page.
I use the WordPress function is_admin() to check to see if the user is on an admin page.
If the image is from the admin page, then you have some plugin that is making TopBar think it is not on the Admin page and thus causing the JavaScript error.
OR
You have found a defect in the core of WordPress.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Admin Bar Not Working When WP-TopBar isActiveExactly what I needed to see.
My plugin does not adjust or change any of the Admin Bar (at the top of the screen.)
There may be a conflict with an existing plugin that you have and TopBar. One option is for you to turn off all your plugins except TopBar then add each one back on (one by one) until you find the conflict. If you tell me the combination, I can try to see what is wrong and which plugin needs to be fixed.
Also, have you tried using Chrome and Looking at the JavaScript console to see if there are any errors? (View | Developer | JavaScript Console) That may point to the conflict.
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Find page ID of homepageIf you delete the settings and enable the TopBar, does the TopBar show up on the HomePage? (You can change the bar_link and bar_link_text).
Did you try disabling W3 Total Cache (or clearing its cache)? I’ve found that caching sometimes prevents changes from showing up.
You can also hack this to only show up on the homepage. Delete all the include/exclude customizations from the Main Options tab in the Plugin Settings. Then in the file
wp-topbar.phplook for the function:
wptb_inject_TopBar_html_js()In there add this line (after
global $wp_query;):
if ( ! is_home() ) { return; }That will force the TopBar to only show up on the homepage. You’ll also need to make this change in future versions until I can add that feature.
BTW, you also have errors you need to fix in your page:
GET http://www.fixmyprintfile.com/wp-content/themes/epsilon/js/ddaccordion.js?ver=3.3.2 404 (Not Found) /plans/:4
[cycle] terminating; zero elements found by selector 05c6f920.1bf99f.js:103
TPGR: sending feeds info (4) chrome-extension://gimgcofdoijbpkkhhlepagbdcfafkehp/tpgr_cs.js:96
GET http://www.fixmyprintfile.com/wp-content/themes/epsilon/css/images/controls.png 404 (Not Found) 05c6f920.1bf99f.js:3
GET http://www.fixmyprintfile.com/wp-content/themes/epsilon/css/images/border.png 404 (Not Found) 05c6f920.1bf99f.js:3
GET http://www.fixmyprintfile.com/wp-content/themes/epsilon/css/images/loading.gif 404 (Not Found) 05c6f920.1bf99f.js:3
GET http://www.fixmyprintfile.com/wp-content/themes/epsilon/css/images/loading_background.png 404 (Not Found) 05c6f920.1bf99f.js:3Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Won't DownloadIn version 3.10, I have reduced the size of the plugin considerably (by no longer including PSD versions of the Social Buttons.) That should solve the download issue.
Forum: Plugins
In reply to: [WP-TopBar] Admin Bar Not Working When WP-TopBar isActiveI tried to solve the problem by I am having trouble recreating it. Can you capture some screen shots and then send me a link to them in the reply below? That way I can see exactly what your issue is.
Bob
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Find page ID of homepageHmmm…
Send me a link to your page (where the TopBar shows up). With that also include the CSS/HTML that shows up on the Debug tab.
You have tried Deleting settings and restarting? That deletes the settings from your database and recreates it with default settings.
In the next release (3.10), I have setup a way to include/exclude by Category. Not sure that will help in your situation. 3.10 will come out after I validate it works with the upcoming 3.4 release of WordPress.
I can see about adding a selection criteria around including/exclude home page. That may not make 3.10.
Bob
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] My topbar is not working, what do I do?Also, if your TopBar isn’t showing, please don’t just start a support request without also supplying the details of how your plugin is configured. So, tell me the options you are selecting and copy the generated HTML/CSS from the Debug Page.
Also, look at the Live Preview page. You should see a “Time Check” and “Cookie Check” message. That will tell you if you have a time range or a cookie that will cause the TopBar not show up.
Finally, you have may have a PageID or Category ID (new in 3.10) that may prevent the TopBar from showing.
Forum: Plugins
In reply to: [WP-TopBar] Admin Bar Not Working When WP-TopBar isActiveistiridye, what version of the plugin are you using? The latest versions have submenus that are automatically shown in the left sidebar. Thus, the submenu never closes.
I am not sure how I am going to help you!
Can you post the generated HTML from the Debug page?
Like I said here 99% of the time it is because you have entered invalid CSS/HTML that breaks the webpage.
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] link not workingdouble check your CSS… looks like you have extra quotes in there:
<a style="color:#00B8FF;" font:="" bold;href="http://thelooploft.zferral.com/l/2/21979" target="_blank"> Here</a>Your link does not work.. I get a 404.
Please post the contents of the created topbar from the plugins debug page.
Forum: Fixing WordPress
In reply to: [WP-TopBar] [Plugin: WP-TopBar] How to Display on Categories PageI think you want to use something like:
$show=0; foreach((get_the_category($thePostID)) as $category) { if ($category->cat_ID = 1 $show=1 } if ( $show == 0) { return; }where “1” is the category you want to include.
But I haven’t tested this.
Bob
Forum: Fixing WordPress
In reply to: [WP-TopBar] [Plugin: WP-TopBar] How to Display on Categories PageI can see how to code that in a future version. Let me know what options you are looking for.
To fix it yourself, look for the function wptb_inject_TopBar_html_js() in wp-topbar.php.
Bob
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Won't DownloadI don’t control the internal dashboard installer. I’ll see how to report the defect to wordpress.
Bob