rfgoetz
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-TopBar] Assign A Menu on TopBarI would suggest that you use just add a second menu via the functions.php:
(see http://stackoverflow.com/questions/10635880/how-to-insert-a-second-menu-into-a-wordpress-template)
Add the function to create a new menu opening file functions.php and registering it:
register_nav_menus( array(
‘primary’ => __( ‘Primary Menu’, ‘yourtheme’),
‘secondary’ => __( ‘Secondary Menu’, ‘yourtheme’ ),
) );
This brought up a 2nd menu in the Theme Menu options.Next, add the code to the desired place on your theme file.
<nav>
<?php
wp_nav_menu( array(‘container_class’ => ‘menu-footer’,
‘theme_location’ => ‘secondary’) ); ?>
</nav>Forum: Plugins
In reply to: [WP-TopBar] Spacing above Top BarNot sure what spacing you are talking about. Your site looks fine.
Spacing comes from the options on the “TopBar CSS & HTML” tab. You can change the padding in Option A.
Bob
Forum: Plugins
In reply to: [WP-TopBar] Center Top Bar contents – responsive to screen widthClosed – no response in over a month.
Forum: Plugins
In reply to: [WP-TopBar] (Instagram) IconClosed – no response in over a month.
Forum: Plugins
In reply to: [WP-TopBar] Multisite, can't configure it…You should have a Network Tab.
Set the “ONLY Show Admin Pages for Multi-Site Network Admins” to Yes. If you are using MultiSite, this will allow you to control if only the Network Admins will have access to the Admin Pages. The Admin must have the
manage_network_pluginsrole assigned.Bob
Forum: Plugins
In reply to: [WP-TopBar] Image SizeClosed – no update in over a month.
Forum: Plugins
In reply to: [WP-TopBar] Not showing on my pageClosed – no update in over a month.
Forum: Plugins
In reply to: [WP-TopBar] Multisite, can't configure it…It works for me:
1. I created a new multi-site installation from a fresh install.
2. I installed and activated wp-topbar.
3. I created a second site.
4. I went to the Dashboard of that new site. Then went to the wp-topbar admin page.
5. I edited the text of the default topbar to include the name of the multi-site.
6. I activated the default topbar.
7. I visited that second site. TopBar shows.How did you try to do the same?
Forum: Plugins
In reply to: [WP-TopBar] Multisite, can't configure it…Looking into it…
Forum: Plugins
In reply to: [WP-TopBar] How to prevent stick topbarOn the Main Options tab, do you have “Force TopBar to Be Fixed On Top of Page” set to “No”?
Forum: Plugins
In reply to: [WP-TopBar] Image SizeYou probably need to add CSS on the CSS (TopBar CS & HTML) tab to adjust how it views. Look at CSS Option A. Example # 5 to start. You might have to add width and padding to adjust the start. (Padding-left can be negative to move the image to the left of the screen.)
Bob
Forum: Plugins
In reply to: [WP-TopBar] Image SizeUse the TopBar Text & Image tab. Last option to use an image. Size is totally dependent on your design criteria.
Bob
Forum: Plugins
In reply to: [WP-TopBar] (Instagram) IconShould be easy.
Create a new TopBar and customize it.
Go to the Social Buttons tab for that TopBar. Select one of the empty icons, say #4.
Click enable.
Upload image (using button)
Add link (the URL that the new icon will open when clicked).
Select how you want the link to open:
_blank – Opens the linked document in a new window or tab (this is default)
_self – Opens the linked document in the same frame as it was clicked
_parent – Opens the linked document in the parent frame
_top – Opens the linked document in the full body of the windowtext to align.
Select Left or Right of the Topbar
Save Settings.
Forum: Plugins
In reply to: [WP-TopBar] Not showing on my pageAny news from the developer?
Forum: Plugins
In reply to: [WP-TopBar] Can't EditClosed – no response