rfgoetz
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-TopBar] "1" printed when using $wptbControlExit = true;Novored,
Thanks for finding that!!!
I just updated the code and pushed out version 5.33.
Bob
Forum: Plugins
In reply to: [WP-TopBar] WP-Topbar and Divi Theme by ElegantYou wrote: ‘The only way I could get it to show up at all was to add….’ That makes sense. You will need to customize the CSS to account for your themes and styling.
You wrote that it ‘doesn’t consistently display’. I tried your page, http://loneoakfbc.org/wp/?page_id=56, multiple times on multiple browsers, operating systems. I continually shows up.
You wrote that it does not ‘respond to resizing’ I am not sure what you mean. I use this Chrome extension (http://chrispederick.com/work/web-developer/chrome/). It has a “Resize | View Responsive Layouts” option. That shows that the TopBar consistently resizes itself to different browser sizes. Is that what you mean? Or ????
Bob
Forum: Plugins
In reply to: [WP-TopBar] Message on farLeft, Social Icons on far rightclosing – no response in over two weeks.
Forum: Plugins
In reply to: [WP-TopBar] Use topbar as language switcherClosing – no response in two weeks.
Forum: Plugins
In reply to: [WP-TopBar] Message on farLeft, Social Icons on far rightYou didn’t give me your URL, so I cannot tell what the issue is.
I am thinking, by your description, that you’ll need to style the CSS that the TopBar uses – most likely in your themes style.css
Forum: Plugins
In reply to: [WP-TopBar] Shortcode Placement LocationLook for the “Force Fix” option:
From the FAQ:
What if I want to fix the TopBar to the top of the page?
Use the Force TopBar to Be Fixed On Top of Page (on the Main Options Tab).Forum: Plugins
In reply to: [WP-TopBar] Shortcode Placement LocationNo need to do that.
You can use the PHP option on the TopBar.
1) Create a TopBar.
2) Go to the PHP tab. You can follow the instructions on that page to add PHP to run the shortcode. Try adding this to the “Enter any PHP to use BEFORE the TopBar is generated:”
echo do_shortcode('[ ENTER YOUR SHORTCODE TEXT HERE /]');Bob
Forum: Plugins
In reply to: [WP-TopBar] Use topbar as language switcherWhat language plugin are you using? Is there a flag/widget they offer? We then can integrate that into the TopBar.
Forum: Plugins
In reply to: [WP-TopBar] Shortcode Placement LocationYou can use PHP to add it. See this thread to see how to get shortcodes outside the editor: https://wordpress.org/support/topic/short-code-in-wp-topbar?replies=5
Forum: Plugins
In reply to: [WP-TopBar] Top Bar Won't Save New MessageNo response in a month – closing.
Forum: Plugins
In reply to: [WP-TopBar] Multisite?Closing – no response in a week.
Forum: Plugins
In reply to: [WP-TopBar] image hides when bar is gradientClosing – no response in about a week.
Forum: Plugins
In reply to: [WP-TopBar] Multisite?There are a copy of ways:
1) Export the TopBars in SQL, edit the file to reflect the multisite tables used by wp-topbar. Then use phpMyAdmin (or other tool) to insert the TopBars into the database.
2) Read the instructions in the file SAMPLE_wptb_custom_default_values.php – found in the lib/ subdirectory. You can use that to change the sample toolbars used by the TopBar.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Fading in and Out of Top Bar – ideaGreat!
Forum: Plugins
In reply to: [WP-TopBar] Fading in and Out of Top Bar – ideaThe jQuery that is built looks like this:
{jQuery(“#wptbheadline1”).hide().delay(5000).slideDown(200)
The “5000” is how long it will show, 5 Secs. This is set by Display Time.
The “200” is how long it takes to slide onto the page, 200 milliseconds. This is set by Slide Time.
In early versions of the plugin, I used FadeIn / FadeOut. However, that turned out to be problematic for some websites. Thus, I switched to slideDown, slideUp.
You may try changing the SlideTime to 1000 milliseconds to get a slower entrance.
Bob