doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Hiding author and timestampmickfealty,
Of course this can be done. Open single.php and remove the following line of code to remove your name:
<p>Posted by: <strong><?php the_author() ?></strong></p>To remove the date delete this line:
<small><?php the_time('jS M, Y') ?></small>The link order can be modified with the My Link Order plugin: http://wordpress.org/extend/plugins/my-link-order/.
Forum: Fixing WordPress
In reply to: Removing Pipe in Titlesddzc,
What theme are you using?
Forum: Fixing WordPress
In reply to: How to remove Category from our Blogmadhuri_vats,
You can use the exclude category argument to remove it from the list_categories tag like so:
<?php wp_list_categories( 'exclude=10' ); ?>Forum: Fixing WordPress
In reply to: Meta tag helpmysportssanctuary,
What version of WordPress are you using? You might try uninstalling the All In One SEO plugin and use SEO Ultimate.
Forum: Fixing WordPress
In reply to: Too Big line-height in the EditorAnomaly_0101,
This is the default for WordPress paragraph breaks
<p>. What you want is a line break<br />. This is accomplished by using a Shift+Return.Forum: Fixing WordPress
In reply to: Adjust the width of my postjazzlee,
The site is currently unavailable.
Forum: Fixing WordPress
In reply to: Create a saveable form for later completion?tsmalley,
Other than a plugin WordPress isn’t going to be able to assist you with this. It sounds as though you are looking for php sessions: http://us3.php.net/manual/en/features.sessions.php
Forum: Fixing WordPress
In reply to: Remove Default Metajazzlee,
The following is the code that was provided by the theme:
<div class="sidebar1"> <ul> <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('sidebar 1') ) : else : ?> <li> <h2>Pages</h2> <ul> <?php wp_list_pages('title_li='); ?> </ul> </li> <?php wp_list_categories('orderby=name&show_count=0&title_li=<h2>Categories</h2>'); ?> <li> <h2>Archives</h2> <ul> <?php wp_get_archives('type=monthly&limit=12'); ?> </ul> </li> <li> <h2>Meta</h2> <ul> <?php wp_register(); ?> <li><?php wp_loginout(); ?></li> <li><a href="http://themes.rock-kitty.net">Wordpress Themes</a></li> </ul> </li> <li> <h2>Blogroll</h2> <ul> <?php get_links(-1, '<li>', '</li>', 'between', FALSE, 'name', FALSE, FALSE, -1, FALSE); ?> </ul> </li> <?php endif; ?> </ul> </div>Download the theme a second time and re-upload the “sidebar1.php” file to ensure it is not corrupt. The ending php makes me think something may have happened.
Forum: Plugins
In reply to: [Plugin: SEO Ultimate] Plugin Incompatibility IssuesJohnLamansky,
Thanks for the response. I look forward to continued use of the plugin. It’s nice to have everything in a single location.
Forum: Fixing WordPress
In reply to: Remove Default Metajazzlee,
The Meta information is held within the “sidebar1.php” file. Delete the following lines:
<li> <h2>Meta</h2> <ul> <?php wp_register(); ?> <li><?php wp_loginout(); ?></li> <li><a href="http://themes.rock-kitty.net">Wordpress Themes</a></li> </ul> </li>Forum: Your WordPress
In reply to: New Site: Looking for Suggestions and CriticismNeuroPR,
Thank you for the kind words.
Forum: Fixing WordPress
In reply to: Moving my Menu under my headerHush_Recordings,
Try moving the menu div just below the header-wrap div but within the page div:
<div id="page"> <div id="header-wrap"> <div id="header"></div> </div> <div id="menu"></div> <div id="content-container"></div> </div>You will need to make some css adjustments to the header-wrap and header divs.
Forum: Fixing WordPress
In reply to: .htaccess not writable but I set it to be writable via FTPmerid,
Have you tried this on 777?
Forum: Fixing WordPress
In reply to: Posting not publishingdvl1980,
It seems pretty clear that the “showposts=5” is not affecting your limited post issue. If it where the “showposts” code would have appeared within the file code you sent.
Just to double check you have modified the settings under Settings >
Reading > Blog pages show at most? You may want to upgrade your WordPress as well if just for security measures.Forum: Fixing WordPress
In reply to: why do I have to refresh the page to enter my site ?sirsimplysaw,
Upload the “wp-load.php” file. After downloading a fresh copy of WordPress, unzip the file and open the folder. Immediately within this folder you will see “wp-load.php”. Add this file to your blog root directory in the same location as seen in the WordPress downloaded folder, so next to the “wp-links-opml.php” file for example.