WP Trio
Forum Replies Created
-
Forum: Plugins
In reply to: [Conditional Shipping for WooCommerce] Make translatable the pluginHi David,
Thanks for taking time to let me know about this issue. This has now been fixed and the plugin can be translated. I appreciate your help with the translation!
Hello,
There is Subtotal includes coupons which controls whether discounts are calculated into subtotal:
Please try to check it if it’s unchecked now.
There is also a debug mode which is helpful for finding issues with rulesets. You can enable it at WooCommerce > Settings > Shipping > Conditions > Debug mode. Once it’s enabled, it’s available in the checkout:
Closing this now but feel free to reopen if the issue persists.
Hello,
Yes, this is possible either with Products or Total Weight condition. Something like this should work:
Products – include – [heavy items]
Disable shipping methods – Free shippingOr
Total Weight – greater than – [heavy item threshold]
Disable shipping methods – Free shippingThis will hide Free shipping whenever there are heavy items in the cart or the weight threshold is exceeded.
Closing this now but feel free to reopen if you have any questions.
Forum: Plugins
In reply to: [Conditional Shipping for WooCommerce] ACF supportHi Jeffrey,
Unfortunately this plugin doesn’t support ACF fields. However, you can use
woocommerce_package_rates
hook to modify shipping methods based on ACF fields. This is the same hook that Conditional Shipping for WooCommerce uses. You can check functionfilter_shipping_methods
inincludes/frontend/class-woo-conditional-shipping-frontend.php
to see how it works.Closing this now but feel free to reopen if you have any questions.
Forum: Plugins
In reply to: [Conditional Payments for WooCommerce] HPOS – plugin compatibilitySupport for HPOS has now been added in the latest release 3.0.1.
Closing this now but feel free to reopen if you have any questions.
Hello,
Support for HPOS has now been added in the latest release 3.1.0.
Closing this now but feel free to reopen if you have any questions.
Forum: Plugins
In reply to: [Conditional Payments for WooCommerce] Filtering issuesHello,
Thanks for reporting this issue.
It seems that the payment gateway plugins defines the payment methods dynamically (the ones with extra suffix) and Conditional Payments doesn’t detect them correctly.
To fix this you will need to register the custom payment methods with a WP filter:
<?php add_filter( 'wcp_payment_method_options', function( $methods ) { // Register custom payment methods here $methods['custom_method_id'] = 'Custom method title'; $methods['custom_method_id_2'] = 'Custom method title 2'; return $methods; } );
This will allow you to add new options to Disable / Enable payment methods select list. Just replace custom_method and Custom method title in the code with przelewy24_extra_154 and so on. You can add the snippet with Code Snippets or to your theme’s functions.php file.
Marking this as solved now but feel free to reopen if you need further help.
Forum: Plugins
In reply to: [Conditional Payments for WooCommerce] HPOS – plugin compatibilityHello,
Thanks for reaching out. Support for HPOS is coming in August, I will let you know once it’s ready for download.
Hello,
Thanks for reaching out. Support for HPOS is coming in August, I will let you know once it’s ready for download.
Hello,
WooCommerce will find the first matching shipping zone and skip the rest. All shipping methods for a region have to be in a single zone.
Please try the following:
- Add both shipping methods (under $100 and above $100) to a single zone
- Create the following ruleset with Conditional Shipping
Subtotal – greater than or equal – 100
Disable shipping methods – [shipping method for under $100]
Enable shipping methods – [shipping method for over $100]Disable any other rulesets so that they don’t interfere. This should be all that’s needed for this use case.
Closing this now but feel free to reopen if the issue persists.
Forum: Plugins
In reply to: [Conditional Payments for WooCommerce] Problem if there is no shipping methodThank you for the screenshot. The ruleset you have looks ok to me and it shouldn’t disable payment methods for giftcards.
In any case, we have just released a new version 3.0.0 which includes debug mode. Please upgrade the plugin and enable the debug mode at WooCommerce > Settings > Payments > Conditions > Debug mode. After that, add a gift card to the cart and head to the checkout. It should show debug info like this:
What does the debug mode look like when you have gift cards in the cart?
Forum: Plugins
In reply to: [Conditional Payments for WooCommerce] Problem if there is no shipping methodHello,
What kind of ruleset(s) do you have right now?
One common culprit is Enable payment methods action since it will disable the payment method if conditions do not pass. Usually it’s easier to use Disable payment methods by inverting the conditions (e.g. “is” -> “is not”).
If you can share what kind of rulesets you have right now, I can check what could be wrong.
Thank you!
Forum: Plugins
In reply to: [Conditional Shipping for WooCommerce] DUPLICATE functionHello,
Thank you for your development idea and sorry for not getting back to you earlier.
Duplicating rulesets is not possible at the moment, however it’s a good idea and I will add it to the development backlog. I would estimate it can be done within a couple of months.
Forum: Plugins
In reply to: [Stock Sync for WooCommerce] sychro from secondary shop to primaryDid you find the reason why it’s not working?
Closing this now but please reopen if the problem persists.
Forum: Plugins
In reply to: [Stock Sync for WooCommerce] Synch secondary to primary errorHello,
That suggests that the URL you’ve entered is redirecting to https://www.yoggiebear.nz. For instance, if you entered yoggiebear.nz (without www), you will need to enter https://www.yoggiebear.nz (with www) so that it won’t redirect.
Closing this now but feel free to reopen if you need any further help.