doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can Anyone help me?taltrap,
Are you using a theme that isn’t working? What have you been doing that is failing?
Forum: Fixing WordPress
In reply to: Header Refuses To Showganjasmoker111,
I’m showing an error in archives: Parse error: syntax error, unexpected $end in /home/content/64/6028064/html/archive/wp-content/themes/nss/index.php on line 64
Forum: Fixing WordPress
In reply to: Can Anyone help me?taltrap,
Are you looking for a designer or just a push in the right direction?
Forum: Fixing WordPress
In reply to: Backuporiolesprospects,
A good start would be using wp-backup: http://www.doc4design.com/plugins/wp-db-backup-fix/
You might also get your hosting provider to do monthly or even weekly backups of the site as well.
Forum: Fixing WordPress
In reply to: Reduce Gap Between Postscolumbo,
Reduce the margin-bottom within the post class.
.post { margin: 0 0 40px; /* Reduce the 40px */ text-align: justify; }Forum: Fixing WordPress
In reply to: How do I remove page title and page/post wrapTechTubeMedia,
The faint green in the footer is a result of the body background tile. Remove the ‘background’ property.
body { background: url("images/bg-tile.jpg") repeat center top #FFFFFF; color: #FFFFFF; font-family: Verdana,Geneva,sans-serif; font-size: 11px; }When you say Page Name are you referring to the “Forum” text?
Forum: Fixing WordPress
In reply to: How to get rid of comments in Popular Posts?Hulbert Lee,
Are you asking how to delete the comments entirely or just remove the ‘X Comments’ text that is appearing under the post?
ocbcckarnup,
Please post the link to the site and any number of us can easily help you solve this.
Forum: Fixing WordPress
In reply to: More fields besides WYSIWYGmatthewordie,
Give Magic Fields a try. It’s one of the best Custom Field plugins available. http://magicfields.org/
Forum: Fixing WordPress
In reply to: How to Limit Text For Each Post on the Catagory Page?wallarookiller,
Assuming your posts have excerpts written for each of them you can use the_excerpt(); instead of the_content(); as suggested above like below. I’ve shortened the code a little so you can see the change clearly.
<div class="post-meta">Posted by <?php the_author(); ?> on <?php the_time('l F, jS'); ?> in <?php the_category(', ') ?></div> <div class="post-text"><?php the_excerpt('read more »'); ?></div>If you do not have excerpts written for each post you can try the following plugin: Limit Posts – http://www.doc4design.com/plugins/limit-post/
Forum: Fixing WordPress
In reply to: Error establishing a database connectionGlennMagas,
WordPress provides tutorials on this very subject. Restoring a WordPress Database: http://codex.wordpress.org/Restoring_Your_Database_From_Backup.
The instructions are very easy to follow, give it a try.
Forum: Fixing WordPress
In reply to: IMAGES – Why are they multiplying like rabbits?richardalan3,
Visit Settings > Media and enter a 0 in the Max Width and Max Height of the image sizes you do not want WordPress to create.
Forum: Fixing WordPress
In reply to: Publish Dateweiler14,
First, you do have access to the phpMyAdmin interface correct? WordPress has a nice example of what it looks like here: http://codex.wordpress.org/Backing_Up_Your_Database
The above is of course walking you through a backup. But it’s in this area that you would look for the post tables and make the date changes.
Forum: Fixing WordPress
In reply to: setting link based on page titlexsux2bmex,
Okay, after reading it a few times I see what you’re asking for and why. Using
<?php the_permalink(); ?>will give you a result such as:http://mywebsite.com/author/http://mywebsite.com/article-titleI haven’t tested this but give the following a try – courtesy of Jason Boyle:
<?php $title = get_the_title(); ?> <a href="http://mywebsite.com/author/post?url=<?php echo $title; ?>&<?php echo str_replace(" ", "%20", $title); ?>"> <?php echo $title; ?></a>See more here: http://wpcult.com/remove-spaces-when-echoing-the_title/
Forum: Fixing WordPress
In reply to: Posts Work No Matter URLchatyak,
What is showing in the 404.php file?