sclosson
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Accessibility Helper (WAH)] Missing desaturate.svg file within css folderHello, just following up on this plugin support question. Can we get the desaturate.svg file that is being referenced here?
Forum: Plugins
In reply to: [Breeze - WordPress Cache Plugin] Breeze .htaccess code breaks siteUnfortunately.
Forum: Plugins
In reply to: [Breeze - WordPress Cache Plugin] Breeze .htaccess code breaks siteI’m having the same problem here with viamonteliving.org. The .org site is parked, and added as an addon under viamonteliving.com (which has been set to redirect to viamonteliving.org). I did not setup the domains as this was done way before I touched the site. I’m not trying to go down a path of changing the DNS to fit for this plugin either. I’m just trying to get the site cached properly using this plugin (is possible). The .htaccess for the site is as follows:
# BEGIN WordPress # The directives (lines) between "BEGIN WordPress" and "END WordPress" are # dynamically generated, and should only be modified via WordPress filters. # Any changes to the directives between these markers will be overwritten. <IfModule mod_rewrite.c> RewriteEngine On RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress # php -- BEGIN cPanel-generated handler, do not edit # Set the “ea-php71” package as the default “PHP” programming language. <IfModule mime_module> AddHandler application/x-httpd-ea-php71 .php .php7 .phtml </IfModule> # php -- END cPanel-generated handler, do not edit
I removed all of the code that the Breeze activation added and also deleted this plugin completely. I am seeing a cache directory in wp-content also, not sure if this plugin added that or not.
It would be great if I could get this plugin working properly with the current DNS configuration. Not even sure the DNS configuration is the problem here, but it appears so as you mentioned it to previous questions related to this 500 Error.
Do you know if it’s possible to fix this manually or something so that I can use this plugin with the current setup of the domains perhaps?
Wow, awesome. Thanks so much! You ROCK!
Hey, thanks got it working, and just left it at via .htaccess in the Settings. Hope that isn’t a problem, converted all current images in the Media Library, haven’t uploaded any yet, but looking at the mime-types of the images, they are set to webp so I’m super excited and seems like the site is loading 5x faster now!
Had to add some filters here, hopefully just the dir paths need to be changed and not the url paths:
add_filter('webpc_uploads_root', function($path) { return '/www/'; }); add_filter('webpc_dir_path', function($path, $directory) { if ($directory !== 'webp') { return '/www/wp-content/uploads'; } return '/www/wp-content/uploads-webpc'; }, 10, 2);
Forum: Plugins
In reply to: [Autoptimize] Doesn’t work with Mapify Pro PluginThat fixed it along with disabling Minify excluded CSS and JS files?, awesome! Thank you so much! Guess there was other JS that needed to be excluded in the plugin. Cheers ??
Forum: Plugins
In reply to: [Yoast SEO] Yoast SEO HTML Sitemap?Ok, thanks for the information. Was hoping for an HTML version of the XML Sitemap, but I suppose this isn’t possible yet.
Forum: Plugins
In reply to: [Easy Custom Sidebars] Custom Post Types not availableAwwww, nevermind, looks like you need to enable rest api for these custom post types in order for them to show up in the Sidebar Replacements area. Just added the following to the
register_post_type
args array:'show_in_rest' => true,
Not sure if there is a security risk with allowing this, but now it is working perfectly.
THANKS for an AMAZING PLUGIN!
- This reply was modified 3 years, 11 months ago by sclosson.
Forum: Plugins
In reply to: [Yoast SEO] Yoast SEO HTML Sitemap?I don’t think you understand what I’m asking here. I would like to add an HTML Sitemap to my site that utilizes Yoast SEO Content Types (you know how you disable/enable them in the backend?). I would like to have an HTML version of the Yoast XML Sitemap, but HTML Instead! How is this possible and why isn’t this an option? Is there a plugin that will tie into Yoast SEO XML Sitemap and generate an HTML version of it somewhere out there?
Thanks