rfgoetz
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-TopBar] Countdown Code Insert NeededTo execute a shortcode, you can use the do_shortcode() function.
For example, here is one way to do it in the PHP tab. This will create a countdown timer. Using the code below, you would need to style the timer with CSS to make it look nice.
echo do_shortcode( '[tminus t="10-31-2014 00:00:00"]HTML to be displayed when the countdown reaches zero.[/tminus]');Bob
Forum: Plugins
In reply to: [WP-TopBar] Uncaught Type Error: Property '1' of object # is not a functionThe TopBar on your site is working perfectly for me on Chrome.
http://current.webutation.com/
What browser are you using?
Bob
Forum: Plugins
In reply to: [WP-TopBar] Uncaught Type Error: Property '1' of object # is not a functionIn wp-topbar.php
Look for this line:
function wptb_build_reopenable__topbar_js ($wptbTopBarNumber) {
Replace it with this line
function wptb_build_reopenable__topbar_js ($wptbOptions, $wptbTopBarNumber) {
Let me know if that works for you,
Bob
Forum: Plugins
In reply to: [WP-TopBar] Uncaught Type Error: Property '1' of object # is not a functionI was able to recreate the error with your file… Now I have to find the defect.
Forum: Plugins
In reply to: [WP-TopBar] Uncaught Type Error: Property '1' of object # is not a functionFor some reason, the javascript that is being generated is missing the code that selects the TopBar. Can you export your TopBar (in JSON FORMAT) and email it to me? My email address is in wp-topbar.php.
I can then load your TopBar on my test site and quickly debug the issue.
Forum: Plugins
In reply to: [WP-TopBar] WP Top Bar hides the menuClosed – no response in over a week.
Forum: Plugins
In reply to: [WP-TopBar] Set Top Bar widthYes — looks great!
Glad you were able to get what you needed!
Forum: Plugins
In reply to: [WP-TopBar] Set Top Bar widthTry this for CSS OPTION C:
position:fixed; 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] WP Top Bar hides the menuFor some reason, I don’t see the TopBar in your sites code anymore.
Can you disable your existing TopBar and create a new one?
Go ahead and change any options — but do not change the CSS Option C.
Let me know if that works.
Also, when I look at your site, I see a black Admin Bar at the very top (with “Login and Directory Dashboard”.. I think that it will occupy the same area that the TopBar would and will hide any TopBar.
Bob
Forum: Plugins
In reply to: [WP-TopBar] WP Top Bar hides the menuFirst — thanks for giving me your URL, it really helps to debug!
Two Options:
1) In the TopBar CSS Option C – removed the “position:fixed”. This will push your page down BUT the TopBar will disappear if the user scrolls.
2) I played around with your site with Chrome’s developer tools. In your theme’s style.css, try changing your padding-top from 5px to 50px for #header. Should be line 127 and this it what is should look like after you edit it:
#header{height:190px;padding-top: 50px;border-bottom:0px solid #EAEAEA;position:relative}Let me know if either works for you,
Bob
Forum: Plugins
In reply to: [WP-TopBar] Russian Language not working / Cant add Query to the phpmyAdminMaybe this will work?
http://wordpress.org/plugins/ninja-page-categories-and-tags/
Maybe this will work?
http://wordpress.org/plugins/ninja-page-categories-and-tags/
You are right…if you choose to SCROLL to show the TopBar, then that is the only way it will show.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Russian Language not working / Cant add Query to the phpmyAdminYou can use the “Category ID” option on the Control tab to include/exclude based on Category.
Create a new Category called “Russian”.
Assign the new “Russian” category to every page and post that is in Russian.For each TopBar, on the Control Tab:
Set those that are in Russian to be “include”
Set those that are not in Russian (English?) to “exclude”Bob
Forum: Plugins
In reply to: [WP-TopBar] Russian language not supported?Change the word “DATABASEPREFIX” with the database prefix in wp-config.php
Bob