rfgoetz
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-TopBar] Russian Language not working / Cant add Query to the phpmyAdminChange the word “DATABASEPREFIX” with the database prefix in wp-config.php
Bob
Forum: Plugins
In reply to: [WP-TopBar] Add wp search box in top barClosed – no response in a week.
Forum: Plugins
In reply to: [WP-TopBar] How to left align text, but center align link?Closed – no response in a week.
Forum: Fixing WordPress
In reply to: Website slow for main and dashboard pages?What host are you using?
Are you using shared hosting?
Have you tried your site locally (using MAMP/WAMP/LAMP)? How does it perform then?
My experience has been the host server config has the biggest impact on performance. You really do get what you pay for.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Logo – Menu – Social – IconsClosed — no response in over a week.
Forum: Plugins
In reply to: [WP-TopBar] cant make it workClosed — no response in over a week.
Forum: Plugins
In reply to: [WP-TopBar] Social Button linksGreat!
Forum: Plugins
In reply to: [WP-TopBar] Social Button linksHmm.. try this… single quote was in the wrong place.
echo '<a href="'.$wptbOptions['social_icon'.$i.'_link'].'" target="_'.$wptbOptions['social_icon'.$i.'_link_target'].'"><img src="'.$wptbOptions['social_icon'.$i.'_image'].'" style="'.trim($wptbOptions['social_icon'.$i.'_css']).'"/></a>';I’ll be posting a new version with this fix over the weekend.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Social Button linksThanks — found a defect.
look in wp-topbar.php
There are two places that you have to change this:
echo '<a href="'.$wptbOptions['social_icon'.$i.'_link'].'" target="_'.$wptbOptions['link_target'].'"><img src="'.$wptbOptions['social_icon'.$i.'_image'].'" style="'.trim($wptbOptions['social_icon'.$i.'_css']).'"/></a>';to this:
echo '<a href="'.$wptbOptions['social_icon'.$i.'_link'].'" target="_'.$wptbOptions['social_icon'.$i.'_link'_target].'"><img src="'.$wptbOptions['social_icon'.$i.'_image'].'" style="'.trim($wptbOptions['social_icon'.$i.'_css']).'"/></a>';Again, you have to do this in two places.
I will fix it in the next release.
Thanks for finding this!
Forum: Plugins
In reply to: [WP-TopBar] Add wp search box in top barHmm..
Try this:
?><form method="get" id="searchform" action="<?php bloginfo('home'); ?>/"><div><input type=”text” value="<?php the_search_query(); ?>" name="s" id="s" /><input type="submit" id="searchsubmit" value="Search" /></div></form><br /><?phpIt has to be all one line — no newlines/enter characters.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Add wp search box in top barIt is because JavaScript has a hard time dealing with newline characters when using the prepend function used to cache the script.
Try this instead of the PHP value you have:
echo '<input type="text" name="s" id="s" placeholder="Search">';Forum: Plugins
In reply to: [WP-TopBar] Add wp search box in top barOdd beans… I don’t see any related errors. (You should fix the errors that are present though).
Can you email me a SQL export of your TopBar? I’ll load it on my site to see what is wrong. My address is in the wp-topbar.php file.
Thanks,
Bob
Forum: Plugins
In reply to: [WP-TopBar] How to left align text, but center align link?You might be able to do this, if you modify your site’s CSS to use change the CSS of the topbar via the IDs that the TopBar creates.
id is ‘wptbheadlineXX’ (where XX is the TopBar # – you can find this from the rendered HTML on your website via developer tools on your browser).
However, I am not an expert at that and don’t know exactly how to do that.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Add wp search box in top barWhat is your website URL? There is usually a java error that you can see from the developer tools.
Forum: Plugins
In reply to: [WP-TopBar] cant make it workI am not able to find a problem without having more access to your site.
Bob