haydenhancock
Forum Replies Created
-
I fixed this by adding the following code right before you return the content in the get_secondary_html function:
remove_filter('the_content', 'wpautop');Forum: Installing WordPress
In reply to: [UPDATE Error]wp-includes/query.php array line 2390The Hotfix worked for me as well.
Forum: Fixing WordPress
In reply to: Search Results – hide Date for Pages, not PostsYou could use a conditional statement. Something like if post, show date. If page, don’t show date.
Forum: Fixing WordPress
In reply to: Twenty Ten Link Widget QuestionThat’s not how the links widget works. What pulls in that widget are links from the “Links” menu. You can add links to that menu and even group them in categories.
Forum: Fixing WordPress
In reply to: Problems with Permalinks and WP at Site RootMight want to clear your browser cache too.
Forum: Fixing WordPress
In reply to: Navigation QuestionWP creates the classes on the fly when the wp_nav_menu function is called. The function can take multiple parameters which can be found in the codex.
Forum: Fixing WordPress
In reply to: Removing site title & tag lineYou need to look in the header.php file. You can edit this file with any standard IDE or even WordPad or Notepad. OR you can edit the file in the dashboard by going to Appearance > Editor. On the right-hand side there should be a list of “Template” files. Choose header.php and look for the branding div that was mentioned previously.
Forum: Fixing WordPress
In reply to: My posts disappear after 60 secondsAlthough it took some time to load, it is working for me.
Firefox 4.0.1
IE 8.0.6001Forum: Fixing WordPress
In reply to: Restaurant Site – (food) menu approachIt really depends on how often the menu is changed. There are a variety of ways you can accomplish this goal. You could actually do the same thing with custom post types.
Forum: Fixing WordPress
In reply to: Blog installation in "Blog" directorySounds like your WordPress Address and Site Address are incorrect. You need to update these fields. To do this, go to Settings > General. Update the mentioned links to point to the correct path for your blog.
Check out this too!
Forum: Fixing WordPress
In reply to: Connection settings for localhost (IIS7)You should be able to use the following credentials.
Hostname: localhost or 127.0.0.1 or server/computer name (i.e. MYSERVERNAME)
FTP Username: Your Windows Account
FTP Password: Your Windows Account PasswordIt sounds like to me that you have the option to serve cache files to logged in users. You can download the plugin and test out the options. You can always delete it if it doesn’t seem to meet your needs.
Forum: Fixing WordPress
In reply to: How do you add SPACER between sidebar widgets?Can you post a link? Depending on how the theme is setup you could add some basic html tags.
<br/>Forum: Fixing WordPress
In reply to: cannot change taglineIt’s always one of the first things to check when changes don’t appear to take place. Usually, caching is the culprit.
Forum: Fixing WordPress
In reply to: Loop within a LoopYou can do a loop within a loop.
Read the “Multiple Loops” section in:
http://codex.wordpress.org/The_Loop