Damienov
Forum Replies Created
-
Forum: Plugins
In reply to: [Jetpack Social] No longer Auto Sharing Post to FacebookThank for the reply, i’ve posted the URL trough the form you’ve provided
Forum: Plugins
In reply to: [W3 Total Cache] W3TC with subdomainsThanks for your help Marko, it does reduce the load just a bit. I guess I need to ask my host to activate Memcache/Redis then
- This reply was modified 3 years ago by Damienov.
Forum: Plugins
In reply to: [W3 Total Cache] W3TC with subdomainsYes cache preload is on with 1800 sec update interval and 10 pages per interval, Preload the post cache upon publish events is on.
will disabling any of these help?
Forum: Plugins
In reply to: [W3 Total Cache] W3TC with subdomainsthere are about 20k+ post on the site
Since Redis is not an option, memcache would be better option then?
But isn’t using memory as cache a bad idea since data stored in RAM is volatile?
Forum: Plugins
In reply to: [W3 Total Cache] W3TC with subdomainsI only use:
– Page Cache – Disk Enhanced
– Minify – Disk
– Browser Cache – DiskWill using memcache/Redis guaranteed to help?
- This reply was modified 3 years ago by Damienov.
Thank you for the fix, will these be pushed on the next update?
it doesn’t even have a hint popover explaining as to why this is a negative
Forum: Plugins
In reply to: [W3 Total Cache] Minify is rewriting font URLsYou need to add an absolute path
rc:url(https://yourwebsite.com/wp-content/themes/yourthemename/webfonts/fa-brands-400.eot)
or simply use a cdn and enqueue itfunction fontawesome_font() { wp_enqueue_style('font-awesome', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css', null, null); // since you're just loading the FA brands font, you could use /brands.min.css instead of /all.min.css } add_action( 'wp_enqueue_scripts', 'fontawesome_font' );
or if you rather host your own
function fontawesome_font() { wp_enqueue_style('font-awesome', get_template_directory_uri() . '/webfont/css/all.min.css', null, null); } add_action( 'wp_enqueue_scripts', 'fontawesome_font' );
Forum: Plugins
In reply to: [W3 Total Cache] Use of W3 Total Cache with WP RocketI don’t think using 2 caching plugin would be a good idea.
perhaps you could take a look at Autoptimize plugin for the minify and choose one if the other for the caching
alternatively you could take a look at Perfmatters (paid plugin) for the minify and lazyloading
Forum: Plugins
In reply to: [W3 Total Cache] Content Security Policy Erroralright, at least the front end CSP error is gone for now
- This reply was modified 3 years, 6 months ago by Damienov.
Forum: Plugins
In reply to: [W3 Total Cache] Content Security Policy ErrorThat did the trick, thanks
Although purging cache on a site with a lot of posts sent me to 404 page on the front page when clearing the cache
I have to manually delete enhanced page cache folder & files manually on the server first, only then I wont get thrown to the 404 page when clearing the cache
Forum: Plugins
In reply to: [W3 Total Cache] 2.1.3 – home page slowed downthere you go, that is the “problem”. W3TC is not providing cached pages as per your settings, this should be as intended.
If you are using chrome or Firefox, just use the incognito window to preview your site changes while logged in on the usual non incognito browser or vice versa
Forum: Plugins
In reply to: [W3 Total Cache] 2.1.3 – home page slowed downare you logged in while viewing the site on the same browser? if so try logging out
because right now your site if loading fast for me
Forum: Plugins
In reply to: [WP YouTube Lyte] option to remove inline stylingfinally got this working lol
add_filter('lyte_match_postparse_template','no_inline'); function no_inline($x) { $x = str_replace('style="width:560px;max-width: 100%;margin:5px auto;"','',$x); return $x; }
I hope this is the right way
Forum: Plugins
In reply to: [WP YouTube Lyte] option to remove inline stylinghonestly? I’ve tried it
can’t seem to make it work lol
eh.. I’m crappy at php ??