tanner96
Forum Replies Created
-
Forum: Plugins
In reply to: [EWWW Image Optimizer] Incompatibility with WPMLThis was resolved by disabling this option:
View post on imgur.com
This just fixed itself (I had cache disabled the whole time)
We are using WPRocket:
View post on imgur.com
NOTE: “Serve from custom domain” has nothing to do with this.
Forum: Plugins
In reply to: [Offload, AI & Optimize with Cloudflare Images] No More need for EWWW WEBPFlawless. We are looking forward to it 5/5
I had a revelation after posting this, but it seems it should still be something that is looked into.
After turning this on: https://i.imgur.com/VO1TRNX.png
The issue is resolved
Thanks for the prompt response, the headers is what I imaged. Although other users are using a “cache” plugin; they may not be using Enterprise Cloudflare.
Thanks for the response, but I am confident this is an issue:
This is because I have all plugins enabled (I would not leave the site broken)
See, if I simply disable 4 irrelevant plugins (even 1 will do it): https://i.imgur.com/aew17Z7.png
And then revisit that page, the individual page settings will override the front-end url and WPForms is down again… my only option is to enable ALL plugins if I want to override individual post types: https://i.imgur.com/j9oLG7O.png
@jeroenrotty Sounds like a plan. However, I mean adding a notice when the failure occurs within the admin panel.
Such as, “Have a large site? Try WP-CLI. READ MORE”@fierevere This was not work for hire.. this was free help. Anyway, hope the thread is enough
4 hours later, here is the current update of failure…
View post on imgur.com
Wow, seems like your response is ignored
Forum: Plugins
In reply to: [Modula Image Gallery - Photo Grid & Video Gallery] PHP 8 Upgrade ErrorsThank you, just FYI this seems to only occur with GPF version 8.x.
We bit the bullet and paid to upgrade GPF to 10.x and the compatibility issue is resolved
Forum: Plugins
In reply to: [Simple Custom CSS and JS] PHP 8 Depreciation NoticeThank you very much for this, updates are not pushing then. Simple fix
Forum: Plugins
In reply to: [Simple Custom CSS and JS] PHP 8 Depreciation NoticeSOLUTIONS:
Depreciation 1
function ccj_modify_code( $type = 'minify', $option = 'ccs', $content ) {Should be modified to:
function ccj_modify_code( $content, $type = 'minify', $option = 'ccs' ) {Reason is because the required parameter without a default value should come first.
Depreciation 2
function search_tree_for_preview( $search_tree = array(), $preview_id ) {Should be modified to:
function search_tree_for_preview( $preview_id, $search_tree = array() ) {Reason is because the required parameter without a default value should come first.