Vignesh Pichamani
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't login into admin page after attempted site renameYou can Change the Site url and Home throught phpmyadmin or else you can do this following steps here
Changing_The_Site_URLFollow the steps to login in your account.
Forum: Fixing WordPress
In reply to: website not showingThe FTP credentials are provide by your host you can access using for example filezilla .
and by this you can rename the plugin folder in the wp-content
May be the plugin has messup your site and admin login try using ftpForum: Fixing WordPress
In reply to: website not showing@cniklesh
Using your FTP credentials rename your plugin folder may solve the problem
Switching the theme to default twenty12 to solve this issue.Thanks,
vickyForum: Fixing WordPress
In reply to: Headers already sent problemcheck with this one
http://codex.wordpress.org/Answers-Trouble_Shooting#Headers_already_sentForum: Fixing WordPress
In reply to: Search results in "PAGES" and "post" ?Forum: Fixing WordPress
In reply to: Search results in "PAGES" and "post" ?which theme are you using ? Can you place the code from search.php
Forum: Fixing WordPress
In reply to: set_post_thumbnail_size() problems<?php if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it. the_post_thumbnail('my-thumb-size'); } ?>Try like this and let us know if any…
Forum: Fixing WordPress
In reply to: I need some helpKindly mark your topic is resolved.If you fixed 🙂
Forum: Themes and Templates
In reply to: Help needed adding a sidebar to the pages!Rename that homepage-sidebar.php into sidebar-homepage.php and after use this code
<?php get_sidebar('homepage');?>hope its may work
Forum: Fixing WordPress
In reply to: Everything is enabled, but you still can't leave commentsKindly mark your topics has resolved ..
Forum: Fixing WordPress
In reply to: which forum plugin does wordpress.org usForum: Fixing WordPress
In reply to: Postshttp://wordpress.org/extend/plugins/pages-posts/
Hope this plugin may help you
Forum: Fixing WordPress
In reply to: Posts<?php query_posts('category_name=slug_name&showposts=1');?> <?php while (have_posts()) : the_post(); ?> <?php echo get_the_title();?> <?php the_content(); ?> <?php endwhile; ?>You could paste that above code in page template(More than one page) to get that post
And note point out that slug name (category name ) to get that post
Forum: Fixing WordPress
In reply to: Main page problemfine… is it working now ?!
Forum: Fixing WordPress
In reply to: Error establishing database connectionIts automatically repair db the problem when you entered the
define('WP_ALLOW_REPAIR', true);In wp-config.phpand try out the
http://kinslerpress.com/blog/wp-admin/