doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: I removed login page, now i cant login HELP!!!phil36,
Yes, try using FTP to do the uploads as I assume you cannot access your admin pages.
Forum: Fixing WordPress
In reply to: Jump off home page to a sub pagedonotobservebe,
Glad you solved this.
Forum: Fixing WordPress
In reply to: Home title not appearing in bar at very toprobertminnella,
What is the link to your web site?
Forum: Fixing WordPress
In reply to: remove all images from databaseCFCnet,
What you need is a php if statement to determine if the image exists. Try something like this to get started. This assumes that you are looking for an image in a custom field and the determines if custom field is empty.
<?php if( get_post_meta($post->ID, 'customFieldName', true) ) { ?> <img src="<?php bloginfo('url'); ?>/wp-content/uploads/<?php echo get_post_meta($post->ID, 'customFieldName', $single=true) ?>"> <?php } else { ?> <img src="path/to/default/image.jpg"> <?php } ?>Forum: Fixing WordPress
In reply to: the_date() is not appearing on my posts.romanonly,
Try what ryans149 suggests but don’t forget to end the if statement.
<?php query_posts('showposts=3&cat=6'); if(have_posts()) : while(have_posts()) : the_post(); ?> <?php endwhile; endif; ?>Forum: Fixing WordPress
In reply to: Home title not appearing in bar at very toprobertminnella,
Can you include a link and the title you would like to see in the browser bar?
Forum: Fixing WordPress
In reply to: errors in 2.8.4 downloadlkcarnes,
Are you certain the download was complete with no issues downloading?
Forum: Fixing WordPress
In reply to: Jump off home page to a sub pagedonotobservebe,
I only watched for about a minute, let me try leaving it alone for awhile and see what happens.
Forum: Fixing WordPress
In reply to: I removed login page, now i cant login HELP!!!phil36,
Depending on how it was removed you could re-upload a new wp-login.php file. If it is not that simple try uploading WordPress over the original install to restore everything. Follow the instructions so you don’t copy over important files such as wp-content. http://codex.wordpress.org/Upgrading_WordPress
Forum: Fixing WordPress
In reply to: How To Turn OFF New User Notification Email?Drover,
Plugin option: Register Plus – http://skullbit.com/wordpress-plugin/register-plus/
The only options available in the admin panel are held under Setting > Discussions and they are the following:
• E-mail me whenever Anyone posts a comment
• A comment is held for moderationForum: Fixing WordPress
In reply to: Show cat, subcat and (some/all) excerpts on blogphysalis,
Here is a good start:
<ul> <?php wp_list_categories('title_li=&include=12'); ?> <ul> <?php wp_list_categories('title_li=&child_of=15&show_count=1'); ?> </ul> </ul>This will list out your categories and sub-categories. Take a look at this page for more options: http://codex.wordpress.org/Template_Tags/wp_list_categories
Forum: Fixing WordPress
In reply to: Permission problem when pressing on linksMoMichael,
Please provide a link to the site in question.
Forum: Fixing WordPress
In reply to: What exact version of wordpress do I have?rwestpnw,
I’m sure there is an easier way to tell, but I typically check wp-includes > version.php and look for the following line:
$wp_version = '2.8.4';This information should be written in the footer of your admin panel as well, but in our case it has been removed.
Forum: Fixing WordPress
In reply to: Jump off home page to a sub pagedonotobservebe,
The site seems to be working correctly. Can you elaborate a little more on the issue and let us know what browser you are using.
Forum: Fixing WordPress
In reply to: Display Subcategories in Sidebarjmz360,
Try something such as:
<ul> <?php wp_list_categories('title_li=&include=12'); ?> <ul> <?php wp_list_categories('title_li=&child_of=10&show_count=1'); ?> </ul> </ul>