jinsley8
Forum Replies Created
-
It has been installed but inactive.
I activated it and added the access key manually.
If I deactivate and activate again it shows this error:
“Error occurred while updating SpamFireWall local base. Error: WRONG_SITE_RESPONSE TEST ACTION: sfw_update__worker ERROR: error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure”I’m using W3 Total Cache too. If I disable Browser Cache then that last message goes away and it shows the original message again.
“Error occurred while updating SpamFireWall local base. Error: SFW UPDATE INIT: FIREWALL_IS_ALREADY_UPDATING”
The thing is I’m using the same theme, W3TC settings, CleanTalk and the same hosting for many other sites with no issue. THe same configurations.
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Unable to exportFolder permissions of wp-content set to 775 as well.
Forum: Plugins
In reply to: [Wallet for WooCommerce] Disable partial payment for one product categoryOkay thank you!
Nevermind, I was using the category ID not attribute term ID.
Resolved
If I add terms to exclude instead and unchecked ‘reverse’ it just shows ALL terms, it doesn’t exclude any.
Ok thanks for letting me know!
Ahh, I just checked with Google Structured Data Tool and the Product schema is set:
I was confused because RankMath shows Schema set to Off. But I guess the Product and Woocommerce Product schema are different?
Forum: Plugins
In reply to: [Wallet for WooCommerce] Exclude Wallet from Tax paymentsHi @subratamal,
Any way to exclude taxes? I don’t want points to pay for tax, tax needs to be paid by customer.
Forum: Plugins
In reply to: [Import Settings into WordPress SEO Plugin – Rank Math] Schema isn’t workingI have the same issue, product schema is disabled on import.
Is there a value I can set for each product in my import to enable the product schema until the fix is available?
Awesome, thanks!
I’m currently doing this to change the fee name but there surely has to be a better solution?
// Edit woo-wallet partial payment name function remove_woo_wallet_add_partial_payment_fee(){ remove_action('woocommerce_cart_calculate_fees', array(Woo_Wallet_Frontend::instance(), 'woo_wallet_add_partial_payment_fee')); } add_action('init','remove_woo_wallet_add_partial_payment_fee'); function new_woo_wallet_add_partial_payment_fee() { $parial_payment_amount = apply_filters('woo_wallet_partial_payment_amount', woo_wallet()->wallet->get_wallet_balance(get_current_user_id(), 'edit')); if ($parial_payment_amount > 0) { $fee = array( 'id' => '_via_wallet_partial_payment', 'name' => __('HR $ Used', 'woo-wallet'), 'amount' => (float) -1 * $parial_payment_amount, 'taxable' => false, 'tax_class' => '', ); if (is_enable_wallet_partial_payment() && $parial_payment_amount) { wc()->cart->fees_api()->add_fee($fee); } else { $all_fees = wc()->cart->fees_api()->get_fees(); if (isset($all_fees['_via_partial_payment_wallet'])) { unset($all_fees['_via_partial_payment_wallet']); wc()->cart->fees_api()->set_fees($all_fees); } } } } add_action('woocommerce_cart_calculate_fees', 'new_woo_wallet_add_partial_payment_fee');
@gmasterpos it already does it automatically.
SOLVED: Oops, I was trying this on localhost. Works fine on production.
I just asked here, doesn’t look like they plan on integrating into core any time soon:
https://www.ads-software.com/support/topic/checjout-block-and-tera-wallet-plugin/#post-13633440
Forum: Plugins
In reply to: [WooCommerce Blocks] Checjout block and Tera Wallet pluginThanks, I know how to override and customize the regular Woocommerce template files.
I wasn’t sure if there was a similar process for the Blocks plugin.