mheltone
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: moved site permalinks not working tried all fixesI agree.. Do that so it can generate a new .htaccess
Forum: Fixing WordPress
In reply to: moved site permalinks not working tried all fixesTry to go to your dashboard again and change your permalinks.
I think googlebot need to visit your site again.
So that it will be updated on Google Search Result.Forum: Fixing WordPress
In reply to: Category posts to page using custom page templateThat’s weird that code usually works on me.
Can you post your custom page here, So we can take a look.Forum: Themes and Templates
In reply to: How to change theme in FTP? Can't login to AdminSOLVED!
Forum: Fixing WordPress
In reply to: Not All Pages Showing in Header But Do In Pages Widgethttp://wordpress.org/extend/plugins/pixopoint-menu/
Try that plug-in.. It works well for me.Forum: Themes and Templates
In reply to: How to change theme in FTP? Can't login to AdminYes.. So did it work?
Forum: Themes and Templates
In reply to: Is there a way I can remove a shadow border around my images?Did this solve your problem?
Forum: Fixing WordPress
In reply to: How to remove post info on a particular postTry putting the post info on a conditional tag like…
<?php if ( is_single('107') ) { // Do Nothing } else { // Put the post info code here. } ?>Put that on the index.php only.
Forum: Themes and Templates
In reply to: Why does my theme kill line breaks?It’s probably because your contents are inside the <div id=”newsposts”>
Do you any styles on that ID?Try putting your <?php the_content(); ?>
inside this div.
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php the_content(); ?> </div>Try that.. Hope that fix it.
Forum: Fixing WordPress
In reply to: Display how many times post have been read???Let’s do some research.
Forum: Fixing WordPress
In reply to: How to remove post info on a particular postForum: Fixing WordPress
In reply to: How to remove post info on a particular postsingle.php
[code moderated as per forum rules - please use the pastebin]
Forum: Fixing WordPress
In reply to: Category posts to page using custom page template<?php query_posts('category_name=k9forsale&post_per_page=30'); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> // contents here <?php endwhile; ?> <?php endif; ?> <?php wp_reset_query(); ?>Try this codes.
Forum: Fixing WordPress
In reply to: How to remove post info on a particular postPost your single.php here.. and your index.php