igorboog
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Slow site response timeHi Usayd,
I was searching in the forums for WP-shortstat and slow loading times (on my – still hidden / under construction – new site I had a slow loading time caused by WP-shortstat), and I found the thread were in right now, and later this one:
http://wordpress.org/support/topic/47348
Might be useful for you.
Forum: Fixing WordPress
In reply to: Precondition FailedMaybe your host has installed mod_security. Put this in your .htaccess:
SecFilterEngine off
(to turn mod_security off), and hopefully you won’t see the error anymore. Good luck.
Forum: Fixing WordPress
In reply to: Done, But with errors on the pageWith that many errors, it might be a good idea to try if HTML Tidy can do some things automated for you:
Backup your file (or better: use a backup to ‘tidy’), experiment with the settings. You can use it as an extension in a text-editor, for example in Notetab Light.
In any case: it’s a good way to learn. Good luck and have fun.
Forum: Plugins
In reply to: REQ: Replace WordPress Search with Yahoo SearchI’ve used this method (not visible yet on my site – I’m rebuilding):
And it works.
Note: your site will have to be indexed regularly by Google for this to be of good use for your visitors.
Forum: Fixing WordPress
In reply to: Hide CategorieTry this over here:
http://wordpress.org/support/topic/49015#post-270091Forum: Themes and Templates
In reply to: query-posts to display only one category on main pageI use the following (in my not yet visible site in development).
When I only want to show category 2:
$wp_query->set(‘cat’, ‘2’);
query_posts(”);And then the loop starts:
if (have_posts()) : while (have_posts()) : the_post();And so on. Note: this will display posts that are in cat 2, but also posts that are also in cat 2.