Tyler Steinhaus
Forum Replies Created
-
Forum: Plugins
In reply to: [Gravity Forms + Wufoo] Phone number, and file attachment fields not workingSorry, I didn’t see this come in sooner. I will try and take a look at this tonight or tomorrow and hopefully have a fix for you soon!
Forum: Fixing WordPress
In reply to: A secondary navigation bar?Sure. [Email removed]
Forum: Fixing WordPress
In reply to: A secondary navigation bar?Can you post the code from your header.php file?
Forum: Fixing WordPress
In reply to: A secondary navigation bar?Well you don’t need to register it in the header, you just need to call the menu inside the header-top like this.
<div class="header-top"> <?php wp_nav_menu(); ?> </div>Read this from the Codex that shows you how to use wp_nav_menu();
http://codex.wordpress.org/Function_Reference/wp_nav_menuForum: Fixing WordPress
In reply to: A secondary navigation bar?It is possible. You’ll need to create the menu registered nav inside your header.php file or wherever <div class=”header-top”></div> is being created.
Forum: Fixing WordPress
In reply to: Add new Section at WP Dashboard widget adminI’m glad it works! Have a great day!
Forum: Fixing WordPress
In reply to: Add new Section at WP Dashboard widget adminIt should be in wp-content/themes/YOURCURRENTTHEME/functions.php
Forum: Fixing WordPress
In reply to: A secondary navigation bar?I read the original post wrong, sorry.
So you want to add the links from the blue menu at the way top of the screen and put those into the gray/black area right above the header?
Forum: Fixing WordPress
In reply to: Changing site URL, specific stepsI would recommend using Go Live Update URLS.
http://wordpress.org/plugins/go-live-update-urls/
This plugin will go through your entire wordpress database and change every old url to the new url.
Forum: Fixing WordPress
In reply to: Add new Section at WP Dashboard widget adminYou’ll need to register a new sidebar in your functions.php file in your theme.
http://codex.wordpress.org/Function_Reference/register_sidebar
Forum: Fixing WordPress
In reply to: A secondary navigation bar?You’ll need to target the top menu with CSS in order to change how it looks.
I would target it by using
.menu-login-container .menu { }Forum: Fixing WordPress
In reply to: Simple way to move blog to new domain on same host?Are you switching to a different hosting account on that server? If so I recommend using Go Live Update URL plugin. It will basically change every link on your site from your old url to the new one. Then you’ll want to move your database over and your site files too the new account.
Forum: Themes and Templates
In reply to: Widegts not working not able to drag and dropWhen you are in “Widgets” in the Admin Panel, at the top of the screen you will see “Screen Options.” It will drop down and on the left side you will see either “Enable accessibility mode” or “Disable accessibility mode.” If you says “Disable accessibility mode” click on it and everything should be back to normal.
Your login didn’t work either.
Forum: Fixing WordPress
In reply to: Text Widget Search FormTry this.
<form id="searchform" method="get" action="http://marginalia.wendywainwright.com/"> <input class="textbox" value="Looking for something?" name="s" id="s" onfocus="if (this.value == 'Looking for something?') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Looking for something?';}" type="text"> <input type="submit" id="searchsubmit" value="" class="searchsubmit" /> </form>All I did was remove search.php from the action and inserted your url.
Forum: Fixing WordPress
In reply to: 3.6 updated whiped out entire css, footer and sidebarWhere is your site hosted? Do they create backups? If you don’t have a backup yourself and none of what esmi is saying works then I would contact your host, if you don’t host yourself, and see if they make backups.