rfgoetz
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Allow user to dismiss/hide topbarTry version 3.03
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Browser CompatibilityOn Chrome, you have a 404 error:
http://clintonwilkinsmortgagegroup.com/cwwp/wp-content/themes/Chameleon/images/CW-bg.jpgFailed to load resource: the server responded with a status of 404 (Not Found)
On this CSS setting: For the entire TopBar: (i.e. at the TopBar’s DIV)
Try adding this CSS:
position:fixed; top: 40; padding:0; margin:0; width: 100%; z-index: 99999;This is the sample CSS that will fix the TopBar to the top of the page. For some reason, Chrome/Safari is not liking the default values (which is
visibility:hidden;)Bob
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Browser CompatibilityWhat is your website URL? Have you changed any defaults? Malformed CSS parameters that you entered can cause a problem. The plugins does not validate your CSS input.
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] v3.0 pages problem3.01 has been uploaded. Thanks for helping me find this problem.
Bob
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] v3.0 pages problemI found the error and will upload 3.01. Calling a global variable causes wordpress to hiccup.
Until then to fix it yourself, delete these lines from wp-tobpar.php
global $pagenow;
if ($pagenow = ‘admin.php’) { // make sure we are on the admin page to minimize scripts loaded on the websiteand replace them with:
if (is_admin() ) { // make sure we are on the admin page to minimize scripts loaded on the website
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] v3.0 pages problemI don’t understand what the issue is. Can you be more explicit about the issue? Is it that it is not working on pages? not working on posts? or ???
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] not working on version 3.3.1There is an issue in the current version, it assumes jquery is enqueued. I have fixed it in the next version… due out by the end of the month.
Bob
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Browser IssuesEach browser has a different engine for interpreting CSS. Thus you need to check each broswer’s capabilities before you select “advanced” CSS selector or declaration. This page can show you the differences by browser: http://www.quirksmode.org/css/contents.html
You can also use Adobe’s free BrowserLab to test how your website will look on different browsers. Make sure to set the delay in BrowserLab to wait to take a snapshot. The delay should be a bit longer than it takes for your TopBar to show:. The delay field is just to the right of where you enter the URL to test: https://browserlab.adobe.com/en-us/index.html
Bob
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Top Bar Exclude PagesPandar, you can do this with some custom CSS that folds the contact box down. You’ll need to experiment to make that happen.
You’ll need to delete the option from your options table using phpMyadmin (or whatever tool you use.) In the wp options table, look for an option with the name “wptbAdminOptions” and delete that option (NOT the table.)
OR
You can edit the plugin and force a reset of the message. Look for the function “getWPTBPluginOptions” in the plugin (wp-topbar.php). Add these lines of code:
$wptbAdminOptions(‘bar_link’) = ‘http://wordpress.org/extend/plugins/wp-topbar/’;
$wptbAdminOptions(‘bar_text’) = ‘Get your own TopBar ‘;
$wptbAdminOptions(‘bar_link_text’) = ‘from the WordPress plugin repository’;This should be placed right before the “return $wptbAdminOptions;” line.
Once you do that, enable the plugin, go to the Admin page. Change the link, text, and link_text via the Admin page. Press Update Settings. That will force the database to update the settings for these three values. Once that is done, remove the three lines of code from the plugin. All should be good.
Bob
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Top Bar Exclude PagesWhew!
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Top Bar Exclude PagesOK — so I looked again at the code and found the issue.
I did not have the exclusion code in place when the TopBar was in the footer – like your page.
Updated to version 2.1. Should work now.
Bob
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Top Bar Exclude PagesUnfortunate, I cannot tell what the Pages ids are of the pages you sent me. I can infer them by using the ?p=xx
The logic is fairly simple. If “Exclude Instead” is set to yes, then the Plugin looks at the PageIDs and if the website is on any of those pages, it does not show the TopBar.
Can you send me a jpg of the settings page to confirm the settings? I may need to get access to your site to find the issue.
Bob
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Top Bar Exclude PagesUpdate 2.0 is up — let me know if this solves your problem.
Bob
Forum: Plugins
In reply to: [WP-TopBar] [Plugin: WP-TopBar] Top Bar Exclude PagesI have a new update almost ready that gives you this option. I am doing some final testing and it should go up tomorrow.
Bob