bhwarrior
Forum Replies Created
-
Forum: Plugins
In reply to: [Booking Activities] HPOS compatibilité ?My WooCommerce store contains more than 80,000 orders, and the process of searching for an order within the admin dashboard is excessively slow, taking over 2 minutes. This sluggish performance is a significant concern. While enabling High-Performance Order Storage (HPOS) could potentially enhance the overall website performance, I am unable to implement this solution. This limitation arises from the fact that two crucial plugins, Booking Activities and Booking Activities – Display Pack, out of the 50 plugins currently in use, are incompatible with HPOS. Consequently, I am faced with the challenge of finding alternative strategies to optimize website performance without compromising the functionality provided by these essential plugins.
Forum: Plugins
In reply to: [Booking Activities] Started events are not bookableAlternatively, you can enable it at the site level and do not display past events on the booking forms you do not want to apply it.
I’ll do this for now. Thank you!
Forum: Plugins
In reply to: [Booking Activities] Started events are not bookableHello, displaying past events will allow people to load previous months in the calendar but they can’t book old dates so it’s fine.
Is it possible to add the setting “Are started events bookable?” on booking forms so I can enable it for selected events only? I’d prefer not to enable the setting for all the events on the website.
Thanks for your help!
Forum: Plugins
In reply to: [Booking Activities] Unable to save acitivity unit namesThank you, that seems to have resolved the issue.
Forum: Plugins
In reply to: [Booking Activities] Unable to save acitivity unit namesIs there an acitivity on your demo site which shows unit names? I couldn’t find one. If not can you please try setting it up and see if it works for you? https://demo.booking-activities.fr/en/
Forum: Plugins
In reply to: [Booking Activities] Unable to save acitivity unit namesI did. All fields have correct values. I also looked in the ‘wp_bookacti_meta’ table and found out that unit names were saved there. But for some reason, those values neither appear under activity parameters nor on the product page when activity is selected.
https://snipboard.io/wrEyqA.jpg
https://snipboard.io/4nWtOy.jpg
https://snipboard.io/RtoLcM.jpgForum: Plugins
In reply to: [Wallet for WooCommerce] Partial payment doesn’t work on checkout pageAny updates?
Forum: Plugins
In reply to: [Wallet for WooCommerce] Filter doesn’t work properlyHi @subratamal,
No doubt partial payments is one of the best features of your plugin, but if its not gonna work as a payment gateway, you should look for a better solution. Negative fee is definitely not how it should be applied to an order. I think most of the people using your plugin with partial payment enabled have no idea how it affects the sales report. But when they realize it, they gonna start raising issues.
Thank you!
Forum: Plugins
In reply to: [Booking Activities] Hide actual number of tickets availableOk. I’ll hide the available quantity for now. Thank You!
Forum: Plugins
In reply to: [Wallet for WooCommerce] Filter doesn’t work properlyI’ve resolved the issue with following piece of code:
add_action( 'woocommerce_cart_calculate_fees','disable_partial_payment', 9, 1); function disable_partial_payment($cart) { foreach ( $cart->get_coupons() as $code => $coupon ){ if($coupon->get_discount_type() == 'smart_coupon'){ add_filter('is_enable_wallet_partial_payment', '__return_false'); } } }You can close this thread but please reply to my query regarding partial payment.
@subratamal I think this name change was unnecessary & will cost you in long run. People looking for a wallet plugin that works with WooCommerce will be more interested in WooWallet rather than TeraWallet.
Forum: Plugins
In reply to: [Wallet for WooCommerce] Filter doesn’t work properlyHi @subratamal
I tried
woo_wallet_disable_partial_paymentfilter but partial payment still doesn’t get disabled when a smart coupon is applied. Am I doing something wrong?I’ve one more query regarding partial payment through wallet plugin. Why is a partial wallet payment applied to an order as negative fee & not payment method? Don’t you think it’s a wrong practice from accounting point of view? For example; When a $50 order is fully paid through wallet the Income from sale is $50. But when the same order is partially paid $25 through wallet & remaining $25 through Credit Card then Income from sale drops down to $25 only. It’s extremely difficult to generate actual sales report in WooCommerce when you’ve tons of people using partial wallet payments.
Forum: Plugins
In reply to: [Wallet for WooCommerce] Filter doesn’t work properlyIt seems like your plugin is not compatible with Woocommerce Smart Coupons. So, I tried following piece of code to disable partial payment when coupon of type ‘smart_coupon’ is applied on cart page but it didn’t work.
add_action( 'woocommerce_applied_coupon', 'disable_partial_payment' ); function disable_partial_payment() { foreach ( WC()->cart->get_coupons() as $code => $coupon ) { if($coupon->discount_type == 'smart_coupon'){ add_filter('woo_wallet_partial_payment_amount', '__return_false'); break; } } }Can you please provide a solution?
Forum: Plugins
In reply to: [Booking Activities] Confict with W3 Total Cache pluginHi mate,
Thanks for putting all your efforts & time to make this awesome plugin even better.
I no longer need to put those two files in the exceptions list because the recent updates from W3TC has fixed the issues.
My site still breaks when Minification is enabled but I’m not sure if its because of your plugins. I currently have 54 active plugins which run my website.
Thank You!
Forum: Plugins
In reply to: [Booking Activities] Confict with W3 Total Cache pluginHi,
It seems to be working after I added following two javascript files into the CDN list of exceptions.
{plugins_dir}/booking-activities/js/woocommerce-frontend.min.js {plugins_dir}/ba-display-pack/js/global-functions-waterfall.min.jsI’ll really appreciate if you make your plugins compatible with cache plugins to further improve the website performance. Check your demo site performance.
Thank You!