thefieldset
Forum Replies Created
-
Forum: Plugins
In reply to: [Lana Downloads Manager] Downloads in Advanced Custom Fields as Post TypeIn this code, what else is available via
get_post()as expressed in the variable$post_ref->?Among other things, can I also access the actual file URL (not just the download URL)?
Thanks in advance.
- This reply was modified 5 years, 8 months ago by thefieldset.
In case others need it, I used the following and it works well:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress@heneedsfood, it should be:
Request: /heneedsfood/2011/11/quinoa-fruit-nut-bars/
Destination: http://heneedsfood.com/quinoa-fruit-nut-bars/To be clear, you’d want the plugin on your wp.secure.servved.com install.
If you look at the plugin documentation you’ll also notice that to simplify you can do the following:
Request: /heneedsfood/2011/11/*
Destination: http://heneedsfood.com/*As long as your new post names are identical to the old ones this will redirect every post in /2011/11/ from your old site to its newer counterpart.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Styling issuesGlad this worked out!
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Styling issuesHave you checked the settings to make sure that you have activated the WooCommerce stylesheet? If that’s not already familiar to you, you can check it at WooCommerce > Settings > General where there’s a checkbox for “Enable WooCommerce CSS.”
If that doesn’t fix your issue, what’s the URL of a page where this is happening?