nsathees
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Dreamweaver and wordpressWordPress can be converted to anything you like. It is the far most advanced CMS on the World today!
Forum: Installing WordPress
In reply to: Domain Name Shows Errordid you modify the folder wp-content to content? That is not that easy!
Forum: Your WordPress
In reply to: Popular Luxury Real Estate BlogLooks ok, check this theme at
[link moderated]Forum: Themes and Templates
In reply to: Single post templatesIf you want different theme for both of them then use this
<?php
$post = $wp_query->post;
if ( in_category(‘5’) ) {
include(“single2.php”);
}elseif(in_category(‘7’)) {
include(“single3.php”);
} else {
include(“single1.php”);
}
?>Forum: Themes and Templates
In reply to: Grey box next to post titles? Mystique themePlease post the URL. that way many here would able to tell exactly what to edit on your side.
Forum: Themes and Templates
In reply to: How to Change the Page Backgound ColorIf you could post the URL it would be easy as not every one runs the 20-11 theme!
Forum: Themes and Templates
In reply to: How to change post font in Chateau theme?URL?
Forum: Themes and Templates
In reply to: New theme: text no longer wraps around imagesit seems your style got the code already there! On line 295.
Did you try to edit the post image and select align left again?
Forum: Themes and Templates
In reply to: zip file opens up instead of savingAre you sure that you are not double clicking?
Forum: Themes and Templates
In reply to: Changing Header Size issueif it doesn’t have enough length, then it will revert to 2 lines. Check the container size.
Forum: Installing WordPress
In reply to: Install script not working – directing to old websiteIt all matters what are the things in the .htaccess file. If you know of nothing important then,
Just rename the .htaccess file or backup a copy to your PC and delete it.
If you have problem then can restore the .htaccess file.
Forum: Fixing WordPress
In reply to: My webhosting provider complain about MYSQL abuseCheck your index.php file in theme dir. It may be corrupted for some reasons.
I had the same issue back some time!Forum: Installing WordPress
In reply to: Confusion with migrating theme to web hostYou have to install WordPress on goDaddy first. Then activate the plug-in through admin panel.
Edit wp-config-sample.php and place all the unnecessary data there and rename it to wp-config.php
After uploading the WordPress do the following
http://yourDomain.com/
The installation will begin > complete it.them go the http://yourDomain.com/wp-admin/
to Dashboard
Under appearance select your theme and activate.
Forum: Fixing WordPress
In reply to: Wrong PHP versionYou should have read the requirement before hand. How did you stop it?
Forum: Fixing WordPress
In reply to: Can't show all posts in widget on single postHas to do with the post query.