insistimento
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Dashboard CSS not loading in FirefoxIn my case, I had this problem, because my htacces has these lines:
RewriteEngine on
RewriteRule ^(.*)\.css$ /wp-content/plugins/script-compressor/jscsscomp.php?q=$1.css [NC,L]I’ve solved my problem eliminating these lines from my .htaccess.
Forum: Fixing WordPress
In reply to: Cannot access /wp-admin or any other page after upgrade to 3.0I solve my problem, renaming plugins folder to plugins.hold, creating a new empty plugins folder and deleting this line from my wp-config.php:
define ('COOKIE_DOMAIN', 'www.mydomain.com');Forum: Themes and Templates
In reply to: Go to post from a category link ?ralev,
here is my solution: “an automatic condition script that could be attached to the main category.php and checks if there’s just one post in the category and redirects.”
<?php if(have_posts()) : $category = get_the_category(); if ($category[0]->category_count == 1) : while (have_posts()) : the_post(); wp_redirect(get_permalink($post->ID)); endwhile; else : include(TEMPLATEPATH . '/index.php'); endif; endif; ?>Forum: Plugins
In reply to: Error message using “Blog as PDF”-Plugindiotima,
If the solution posted by samboll doesn’t work, please reinstall the plugin because i’ve made some updates on it.
Thanks, best regards,
Marcos Rezende