Michael Kwan
Forum Replies Created
-
Thanks, how do I identify which is Lite and which is Pro? I don’t see any indication or separation.
Forum: Reviews
In reply to: [Admin and Site Enhancements (ASE)] Simply the bestSmall help I can offer as thanks for your plugin ??
Forum: Reviews
In reply to: [Admin and Site Enhancements (ASE)] Two Stars for Effort@deeveearr It was not a bug. If you don’t like it, simply head to the refund counter to get your refund. Oh wait, my mistake, you paid nothing. Ayy look at that, I’m patronising too. Well done, me.
@qriouslad Thanks for context, and thanks for the awesome plugin.
Forum: Plugins
In reply to: [Admin and Site Enhancements (ASE)] Duplicating Annoyance@deeveearr I don’t know why you’re bitching on this feature. It’s a good feature, and a no-brainer to hide it with some basic CSS. If you don’t know the literal basics of CSS (as evidently shown) then you’re clearly a novice WordPress user, nothing wrong with that, but maybe consider that you’re not the most important person when it comes to plugin development for the mass bulk of users out there?
@qriouslad This plugin is awesome, thanks for your work.
Currently I’m using a workaround – for “real” users that I want to allow to login, I set them as a different user role. Then I set an automatic login redirect for all [User Role = Subscriber] to [ /wp-login.php?action=logout ], and add a code in functions.php to remove the logout confirmation:
add_action('check_admin_referer', 'logout_without_confirm', 10, 2); function logout_without_confirm($action, $result) { /** * Allow logout without confirmation */ if ($action == "log-out" && !isset($_GET['_wpnonce'])) { $redirect_to = isset($_REQUEST['redirect_to']) ? $_REQUEST['redirect_to'] : 'url-you-want-to-redirect'; $location = str_replace('&', '&', wp_logout_url($redirect_to)); header("Location: $location"); die; } }
This works as a simple honeypot, and any non-authorised Google logins get force logged-out.
But preferably I’d like to prevent auto-registration altogether. Appreciate any help, thanks.
- This reply was modified 1 year, 2 months ago by Michael Kwan.
Forum: Plugins
In reply to: [Booster for WooCommerce] How to change currency in pre-existing orderThanks David, appreciate the reply. May I ask how does this affect my WooCommerce reports? Say if my home currency is USD and I have an order in MYR (exchange rate 1:4), if I get an order of MYR40, does this reflect in my records as USD10 or USD40?
Thank you, I was facing the same problem. For future reference, this is fixed in:
AAM > Settings > Services > User Level Filter > Disable
Forum: Plugins
In reply to: [WooCommerce] Product Save Times Out to 502 ErrorSorry to bring up an old thread, I know WC is now in v5.1 and I don’t face the same problem as OP.
Just to ask, can I safely turn off autoload for wc_remote_inbox_notifications_specs? It was the hack for this issue but since it’s now properly solved I’m not sure if autoload=no will break anything.
Am trying to reduce my autoload as low as possible.
Thanks in advance!
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Changing the payment Description fieldUpdate: Turns out the client receives payment in Stripe from other sources other than WooCommerce, which explains the weird [email protected] in the Description column. The ones from WooCommerce are fine (Order xxxx from Site Name). So no biggie, problem solved (technically a non-problem), but I’m curious anyway to know if this can be customised.
Thanks in advance!
Ah that’s great, thanks a lot!
For future readers – with that keyword I managed to find this code to add to functions.php:
/**
* @snippet Removes shipping method labels @ WooCommerce Cart / Checkout
* @how-to Get CustomizeWoo.com FREE
* @author Rodolfo Melogli
* @testedwith WooCommerce 3.9
* @donate $9 https://businessbloomer.com/bloomer-armada/
*/add_filter( ‘woocommerce_cart_shipping_method_full_label’, ‘bbloomer_remove_shipping_label’, 9999, 2 );
function bbloomer_remove_shipping_label( $label, $method ) {
$new_label = preg_replace( ‘/^.+:/’, ”, $label );
return $new_label;
}Source: https://www.businessbloomer.com/woocommerce-remove-shipping-labels-cart-checkout-page-e-g-flat-rate/
(debug screenshot was taken when I was connected to the Japan VPN)
Thank you for your fast reply. Debug screenshot: https://prnt.sc/wgtf20
Problem still happens when logged in or logged out (incognito mode – https://prnt.sc/wgtivi), also tested with other friends who are in other countries physically.
From your Testing Tutorial:
a. “How WooCommerce gets the customer country?” – This part is fine, it guessed the country correctly by IP.
b. “Checking if Price Based on Country is working fine” – #3 does not happen. Although I change the billing/shipping country, the price does not change.Also, to add:
1. I’m using ProtonVPN free version to test
2. Site does not use caching at the momentThanks, yes resolved. Turns out I was using the Classic Translation editor. Switching to the advanced or WordPress editor solved it.
That’s awesome! Looking forward to it. Thank you so much for this plugin!
Happy new year to you and your team @lusp