rfgoetz
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-TopBar] back and front end message with debug mode onThanks for your help, really appreciate it.
I’ll push it out on the next release.
Bob
Forum: Plugins
In reply to: [WP-TopBar] back and front end message with debug mode onI cannot replicate when I turn debug on.
in wp-topbar.php, try changing this:
wptb::init();to this:
$wptb = new wptb(); $wptb->init();I absolutely need you to validate this removes the error message, since I cannot fully test it.
If it works for you, I will push the change in the next release.
Bob
Forum: Plugins
In reply to: [WP-TopBar] back and front end message with debug mode onWhat version of PHP are you using?
Bob
Forum: Plugins
In reply to: [WP-TopBar] Integrating a WP popup into top barClosed – no response in about a week.
Forum: Plugins
In reply to: [WP-TopBar] How do I change the width?Closed – no response in about a week.
Forum: Plugins
In reply to: [WP-TopBar] Integrating a WP popup into top barI installed the pop up plugin and placed this in the AFTER PHP field:
echo preg_replace("/\r\n|\r|\n/",'',do_shortcode("[link_popup id='24' link_text='Click to open popup' name='Dummy']"));But it does not work. You can use the developer tools to see that that this created the jquery and HTML code to create a TopBar. But how it is created, breaks the jQuery that is used to show the TopBar.
If you try the above, you’ll notice that the admin pages of wp-TopBar stopped working. The preview feature is rendering the above shortcode which breaks all jQuery on my pages. To fix that, append
&nopreviewto the admin page URL (see FAQ for details) and delete the custom PHP added.Bob
Forum: Plugins
In reply to: [WP-TopBar] How do I change the width?Your theme’s CSS has a padding for the BODY class.
I added a padding-left & padding-right to make the TopBar go full screen.
Bob
<body class=”home blog custom-background single-author indexed” screen_capture_injected=”true” style=”
padding-left: 0px;
padding-right: 0px;
“>Forum: Plugins
In reply to: [WP-TopBar] How do I change the width?It looks full screen to me (on Chrome). Am I missing anything? Image is below.
Forum: Plugins
In reply to: [WP-TopBar] alignment – css add custom contentClosed – no response in over a week.
Forum: Plugins
In reply to: [WP-TopBar] TopBar 50% and set in the center!Closed – no response in over a week.
Forum: Plugins
In reply to: [WP-TopBar] alignment – css add custom contentMaybe.. if you align the TopBar left and the use the custom PHP to build the right aligned [link: register][login button].
Bob
Forum: Plugins
In reply to: [WP-TopBar] Import of Tools Bars?Closed – no response in one week.
Forum: Plugins
In reply to: [WP-TopBar] TopBar 50% and set in the center!The PX stands for Pixels – not percent.
I am not a CSS expert — so I don’t have much advice to give.
If your topbar is 400px wide.. then you would put -200PX parameter to center the TopBar halfway.
Bob
Forum: Plugins
In reply to: [WP-TopBar] TopBar 50% and set in the center!You’ll need to play with the CSS like this:
For CSS OPTION C:
top: 40; padding:0; z-index: 99999; left: 50%; margin-left: -100px;
Where -100PX is 1/2 of the size you want.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Import of Tools Bars?A couple of ways:
1) Export in SQL format. Then using PHPMyAdmin to import that file into the database of the second blog. You may need to modify the import file to change the table name (if the new blog uses a different prefix.
2) EXPORT in JSON format.
a) On your new blog, move that file into../plugins/wp-topbar/lib/samples/.
b) Now rename the filesample_topbars.jsonin that directory tosample_topbars.json.old.
c) Rename your EXPORT file tosample_topbars.json.
d) Now go to the SAMPLES tab in WP-TopBar. You will see the TopBars that you exported from your original blog. You can copy any TopBar and use it on the new site.Bob
Bob