lunarca
Forum Replies Created
-
Forum: Plugins
In reply to: [Download Monitor] How to automatically redirect to a Downloading PageFixed (or something like it). I’ve inherited the site, and it took me a while to realise that the Download Monitor is used with 3 other plugins to create the dowloading experience where:
1. User provides personal info
2. Is suscribed to Mailchimp list
3. Get’s the download link
4. If he/she clicks on the link is then redirected to the Thank you page.So, my new question is: Is there a cleaner way to do this avoiding as many plugins as possible?
Forum: Fixing WordPress
In reply to: How to remove the “category” folderI found this on ‘a href=”http://www.clausheinrich.com/seo/change-or-remove-the-category-from-your-permalinks-on-a-wordpress-blog-34.html”‘Claus Heinrich Personal Weblog’/a’
‘blockquote’Find the file wp-includes/classes.php and about halfway down you can change the settings.
To remove the category like above do this:$this->category_structure = $this->front . ‘category/’;
change it into this:
$this->category_structure = $this->front;
‘/blockquote’But in order for it to work, you MUST have the Apache’s mod_rewrite module on. To do this, just write ‘blockquote’RewriteEngine on’/blockquote’ on your .htcaccess file
Note that it will only work if you have the mod_rewrite module installed
Forum: Fixing WordPress
In reply to: How to remove the “category” folderIt doesn’t work for me 🙁 I don’t get the same results when I write
http://www.rodadas.net/blog/category/blog/citas/
than when I go
http://www.rodadas.net/blog/blog/citas/
Any other ideas?