tubaguy50035
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] Turn off site name replacementOh boy. I think I found it.
define(‘DONOTCDN’, true);
Forum: Hacks
In reply to: Does plugins_url work as we should expect?I understand about the caveats associated with must use plugins. The last bullet point under caveats suggests adding a loader and loading all plugins separately.
Even if I do that, the plugins_url that gets returned is not correct. It just seems odd that there is special behavior for must use plugins in the plugins_url() function at all if it doesn’t work by checking the folders under that directory.
I respectfully disagree that this is a “special situation”. It seems to me that having multiple must use plugins would be a commonplace tactic if the functionality existed in WordPress to make that happen, but as of now, any plugins using plugins_url() cannot be used this way. I do not see the need to have plugins structured any differently under the must use plugins path versus the regular plugins path, but maybe that’s just me.
Forum: Plugins
In reply to: [W3 Total Cache] Compatible with Windows/Azure?Yes.
Forum: Plugins
In reply to: [Yoast SEO] OG tags for parent post on attachment pageAnybody?
Forum: Themes and Templates
In reply to: Tags are only displaying one (the most recent) postWow I’m dumb. Someone set the setting “how many posts to display” to one. So… yeah.
Forum: Themes and Templates
In reply to: Tags are only displaying one (the most recent) postI’m pretty sure the loop is set up correctly. I also get no warnings or errors with debug on.
Forum: Fixing WordPress
In reply to: Permalinks not workingThis is what is in .htaccess
# 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
Do I need an entry under sites-enabled?