ddsuresh
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress Admin becoming slow – is host to be blamed?Do you face this problem only in Admin site or even in your blog pages also?
If it is only in Admin site, then you need to run Firefox Firebug addon to check the Admin site. Under Net tab, it will clearly tell you which files are taking more time.
May be there are some missing file redirection on Admin site.Suresh
Forum: Fixing WordPress
In reply to: How to remove title attributes from categories permalinks?rossrobbie,
I think “Permanent link to” might be in your theme, so you need to edit your theme files
like page.php, archive.php, search.php and manually remove these “Permanent link to”Thanks,
Suresh
http://www.largeresource.netForum: Fixing WordPress
In reply to: google analyticsmjw architects,
You can find the functions.php and footer.php under your activated themes folder
wp-content\themes\<theme-folder-name>\functions.php wp-content\themes\<theme-folder-name>\footer.phpfor example, default theme folder will be
wp-content\themes\default\footer.phpThanks,
Suresh
http://www.largeresource.netForum: Fixing WordPress
In reply to: WP 3.0 – comment form not displayedMay be you need to edit wp-includes/comment-template.php
and goto line 893require( WPINC . '/theme-compat/comments.php');replace the above line with
require( ABSPATH . WPINC . '/theme-compat/comments.php');Then might solve your problem temporarily until they fix the problem
Thanks,
Suresh
http://www.largeresource.netForum: Fixing WordPress
In reply to: Sending emails does not workmendocinotim
I was also facing same problem.
Then i found the problem
I had given the hostname as mail.largeresource.net, but you need to give it as “localhost“, then might work for you.