rfgoetz
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-TopBar] Image alignment in the header top barIn CSS Option A, add this:
background-position-x:100px;Where 100px is how far to the right you want the image pushed out.
When I tested this, I used the following code as the full CSS in CSS Option A:
background-repeat: no-repeat;background-position-x:100px;Bob
Forum: Plugins
In reply to: [WP-TopBar] WP-TopBar directions?You can re-code that top bar into WP-TopBar, what the plugin will give you is the ability to control when it shows up, what type of browsers, date/time, etc.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Font in Chrome won't changeI was able to get this to work, I tested it and it looks like google is adding slashes before the single quotes.
font-family:\'arial, sans-serif\';Try this (no single quotes):
background-repeat: no-repeat; font-family:arial, sans-serif;Forum: Plugins
In reply to: [WP-TopBar] Which user roles can add topbars?The plugin only checks for roles on multi-site installs. It looks for
current_user_can("manage_options").Bob
Forum: Plugins
In reply to: [WP-TopBar] WP-TopBar directions?I would use custom PHP. There are examples in that Tab.
Yes, you can export config.
Forum: Plugins
In reply to: [WP-TopBar] Initial display start timeNo..
on the All TopBars Tab
Select Main Options under the Actions drop down for the TopBar you want to change.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Tags vs. CatagoriesClosing – no response in a week.
Forum: Plugins
In reply to: [WP-TopBar] Initial display start timeThe start time of the Main Options Tab – called “Start Delay”.
Note, that the timer starts after the page has loaded and rendered. So, the time is somewhat variable based on how quickly your page normally loads.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Can't edit my Top BarClosed – no response in 2 weeks
Forum: Plugins
In reply to: [WP-TopBar] Title AttributesClosed – no response in 3 weeks.
Forum: Plugins
In reply to: [WP-TopBar] Modify transition style to fade instead of drop-up/downClosed – per request.
Forum: Plugins
In reply to: [WP-TopBar] Make top bar appear at bottom?Closed – no response in 3 weeks.
Forum: Plugins
In reply to: [WP-TopBar] update failedClosed – no response in 2 weeks.
Forum: Plugins
In reply to: [WP-TopBar] Tags vs. CatagoriesLook in wp-topbar.php for function wptb_check_control_options()
Change this code:
foreach((get_the_category($thePostID)) as $category) { if ( in_array( $category->cat_ID, explode( ',', $wptbOptions['include_categories'] ) ) ) {To
foreach((get_the_tags($thePostID)) as $category) { if ( in_array( $category->term_id, explode( ',', $wptbOptions['include_categories'] ) ) ) {(see this page http://codex.wordpress.org/Template_Tags/get_the_tags on how to use the get_the_tags() function.)
Then load the category ID field on the Plugin Admin page with the Tag IDs you want to match on.
Let me know if this works (I have not tested this.) If it does, I can add this as an option in a future release.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Can't edit my Top BarThat is odd. What version of WP are you on? What version of the plugin? Are you seeing any errors in the console?
Bob