contemplate
Forum Replies Created
-
Hey @michaelimi I’ve created a snippet that better integrates BGES with Buddyboss and solves this problem:
https://gist.github.com/contemplate/4fa9ada2c6bdcabd18d281054f199b3fI tried re-installing multiple times and we had the same error.
I used @yekusiel patch above and that worked as a temporary solution.
System report: https://pastebin.com/BwM9EJPH ( 1 day expiration )
Fatal Error: I posted in first thread.Forum: Plugins
In reply to: [Payment Plugins for Stripe WooCommerce] AfterPay limit incorrectThanks @mrclayton
I had to wrap this in a plugins_loaded action to get it to work in our snippets plugin but I’m all good now.// Raise Afterpay/Clearpay max for USD to $4,000
add_action( 'plugins_loaded', function () {
add_filter( 'wc_stripe_afterpay_get_required_parameters', function( $params, $gateway ) {
if ( isset( $params['USD'] ) && is_array( $params['USD'] ) ) {
// Structure is ['US', 1, 2000] -> country, min, max
$params['USD'][2] = 4000;
}
return $params;
}, 10, 2 );
}, 20 );Thanks. done.
Yes I believe you are right. After temporarily disabling Imagify then other plugins start reporting similar errors. I found that it was related to the Action Scheduler running a migration. We adjust some of our server resources and that seems to have solved it for now.
ok thanks @convertkit
We’ve had a subscription customers report difficulty as well with changing payment methods since updating to v9.3.1. On the front-end they see a message: Received unknown parameter: order
I’m attempting to roll back to 9.2.0 to se if that fixes it as well.Update! After further testing we still found our WP Rocket cache being flushed at excessive rates every few seconds which didn’t solve the performance issues. We’ve adjusted our code to fully resolve this.
/**
Disable ConvertKit’s automatic configuration of caching plugins.
*This removes the admin_init hook that ConvertKit uses (via its admin_cache_plugins class) to update WP Rocket’s cache options, which is what’s triggering cache purges.
*/
function disable_convertkit_cache_plugin_integration() {
if ( function_exists( ‘WP_ConvertKit’ ) && method_exists( WP_ConvertKit(), ‘get_class’ ) ) {
// Try using the key ‘admin_cache_plugins’ which may be correct for your version.
$cache_plugins = WP_ConvertKit()->get_class( ‘admin_cache_plugins’ );
if ( $cache_plugins && is_object( $cache_plugins ) ) {
remove_action( ‘admin_init’, array( $cache_plugins, ‘maybe_configure_cache_plugins’ ), 10 );
}
}
}
add_action( ‘init’, ‘disable_convertkit_cache_plugin_integration’, 20 );/**
Also remove ConvertKit’s ck_subscriber_id exclusion from WP Rocket.
*/
function disable_convertkit_wp_rocket_cookie_exclusion() {
if ( function_exists( ‘get_rocket_option’ ) && function_exists( ‘update_rocket_option’ ) ) {
$reject_cookies = get_rocket_option( ‘cache_reject_cookies’, array() );
if ( is_array( $reject_cookies ) && in_array( ‘ck_subscriber_id’, $reject_cookies, true ) ) {
$reject_cookies = array_diff( $reject_cookies, array( ‘ck_subscriber_id’ ) );
update_rocket_option( ‘cache_reject_cookies’, $reject_cookies );
}
}
}
add_action( ‘admin_init’, ‘disable_convertkit_wp_rocket_cookie_exclusion’, 20 );Perfect that fixed it!
Forum: Plugins
In reply to: [Help Scout] Security Check Failed IssueConfirming we experienced the same error and the update broke Elementor, Cartflows, and many more things. We were able to rollback to version 6.5.1 and that fixed our site. I don’t even see a changelog entry listed for 6.5.3 here.
@pozoalcon this moderation was done by WordPress Moderation team and not the Elementor team. I guess the error logs need to be pasted elsewhere and then embedded here.
- This reply was modified 1 year, 4 months ago by contemplate.
Forum: Plugins
In reply to: [Search Exclude] The “custom-sidebar-metabox” plugin errorSame issue for us too. I rolled back to 2.1.5.
Seems to be related to these:
https://ww.wp.xz.cn/support/topic/search-metabox-error-and-settings-v2-1-6/
https://ww.wp.xz.cn/support/topic/search-exclude-meta-box-disappeared-after-last-update/Forum: Plugins
In reply to: [TaxJar - Sales Tax Automation for WooCommerce] Fatal Error on version 4.2.2Awesome thanks for responding so quickly @seanconklin !!
YES this WPE drama needs to stop and we get back to being a collaborative community. 🙂Forum: Plugins
In reply to: [TaxJar - Sales Tax Automation for WooCommerce] Fatal Error on version 4.2.2@seanconklin did Version 4.2.3 fix this issue?
Forum: Plugins
In reply to: [MyBookTable Bookstore by Stormhill Media] Performance improvement@stormhill I still don’t see this added in 3.5.2. Could you please add it soon?