rfgoetz
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-TopBar] Action Drop Down – Not workingYikes! Can you go to the Debug tab for a TopBar and copy the Debug settings in a reply?
“Debug Settings
Server Check:
Server Type: Apache
Operating System: Linux
PHP Version: 5.4.45
fopen setting is ON
PHP Magic Quotes is OFF”Are you seeing any errors in your browser’s console?
Forum: Reviews
In reply to: [WP-TopBar] Could not add a top barSure would have liked for you to submit a support ticket in instead of leaving a negative review.
Negative reviews have a long-lasting impact.
I work hard at resolving all issues as quickly as possible.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Add RSS to TopBarClosing – no response in a week.
Forum: Plugins
In reply to: [WP-TopBar] TopBar Loads Significantly SlowLooks like your site is fixed. Closing the ticket.
Forum: Plugins
In reply to: [WP-TopBar] TopBar Loads Significantly SlowThanks for sending this.. and I took a look at the site.
I think it is this: It looks like you have a problem with your footer widget that is causing a delay to the javascript. Which is causing a TopBar to be impacted since it uses JavaScript.
thenorthlandnews.com/:1610 GET https://streamtest.github.io/badges/streamtest.js net::ERR_CONNECTION_TIMED_OUT
thenorthlandnews.com/:1730 GET http://advert-serv.johnmorris.me/adserver/adlogger_tracker.php 500 (Internal Server Error)(anonymous function) @ thenorthlandnews.com/:1730(anonymous function) @ thenorthlandnews.com/:1732
http://advert-serv.johnmorris.me/adserver/adlogger_tracker.php Failed to load resource: the server responded with a status of 500 (Internal Server Error)
Forum: Plugins
In reply to: [WP-TopBar] Add RSS to TopBarYou can try this in the PHP tab:
echo do_shortcode('[ditty_news_ticker(1004]');I suspect that this will be shown above or below your existing TopBar (depending if you use the Before or After PHP sections.)
You will have to play a bit with your CSS to position the RSS ticker exactly where you want it. You might have to echo out ‘<div id=myrss >’ and ‘</div’> to be able to reposition the RSS ticker. Unfortunately, I won’t be able to help you craft your CSS to relocate the ticker – it will be very tricky and time consuming for me (since I am am not a CSS expert.)
Forum: Plugins
In reply to: [WP-TopBar] Add RSS to TopBarSure, you can do that by going to the Social Buttons tab, adding an RSS icon to an unused Social Icon, and using the RSS for the Link (URL).
The plugin comes with an RSS image, found here: …/wp-content/plugins/wp-topbar/lib/icons/PNG/rss.png or you can add your own.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Multiple LinksClosed – no response in over a month.
Forum: Plugins
In reply to: [WP-TopBar] WP-TopBar: Google Font not rendering on Firefox and ChromeClosed – no response in over a month.
Forum: Plugins
In reply to: [WP-TopBar] Include a specific Top-bar to a specific archive pageV5.34 has been published and fixes this problem. Thanks for helping me test this!
Bob
Forum: Plugins
In reply to: [WP-TopBar] Include a specific Top-bar to a specific archive pageYikes! Something must have gone wrong in the copy/paste! Can you send me your email address and I will send you the working version of the plugin?
(my email is in wp-topbar.php)
Bob
Forum: Plugins
In reply to: [WP-TopBar] Include a specific Top-bar to a specific archive pageCan you try this coding change?
in wp-topbar.php
Look for this block of code in the function
wptb_check_control_options:if ($wptbOptions['include_categories'] == 0) $category_id_found = true; else { $category_id_found = false; if ($wptbOptions['include_logic'] != 'page_only') { //skip this logic if we are only checking pages foreach ((get_the_category($thePostID)) as $category) { if (in_array($category->cat_ID, explode(', ', $wptbOptions['include_categories']) )) { $category_id_found = true; break; } } if ($wptbOptions['invert_categories'] == 'yes') $category_id_found = ! $category_id_found; } }Change it to:
if ($wptbOptions['include_categories'] == 0) $category_id_found = true; else { $category_id_found = false; if ($wptbOptions['include_logic'] != 'page_only') { //skip this logic if we are only checking pages if ( is_single() ) { // single page foreach ((get_the_category($thePostID)) as $category) { if (in_array($category->cat_ID, explode(', ', $wptbOptions['include_categories']) )) { $category_id_found = true; break; } } } else { // archive page $category = get_category( get_query_var( 'cat' ) ); if (in_array($category->cat_ID, explode(', ', $wptbOptions['include_categories']) )) $category_id_found = true; } if ($wptbOptions['invert_categories'] == 'yes') $category_id_found = ! $category_id_found; } }Let me know if this works for you and I can publish the fix.
Thanks,
Bob
Forum: Plugins
In reply to: [WP-TopBar] Include a specific Top-bar to a specific archive pageLooks like archive pages does not return “get_the_category()” like a single page.
Let me see if I can code up a change to make this work.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Multiple LinksSorry for the lag, I was out of the country and had very limited internet access.
Yes, you can do this. Look at the PHP tab and see the sample code. You can use that to create the TopBar like you describe.
Forum: Plugins
In reply to: [WP-TopBar] WP-TopBar: Google Font not rendering on Firefox and ChromeI am back in-country. Do you still need help with this?