Michael Kwan
Forum Replies Created
-
Thank you @lusp for the awesome updates to the plugin. I do agree with @jasonwutt though, the new interface is hard to work with from a UI perspective. Might I suggest a minor adjustment to the interface? https://snipboard.io/LR408M.jpg
I have nearly 250 rules due to different weight prices… this will make it much easier to read and manage. Thank you in advance!
By the way @martapaw the link in this article https://docs.flexibleshipping.com/article/503-flexible-shipping-shipping-method-free-shipping under “You can customize the notice above using the flexible_shipping_free_shipping_notice_text filter. Click here to see how to use it →” is broken:
I’m guessing you meant to direct to this link?
https://docs.flexibleshipping.com/article/915-flexible-shipping-advanced-options-customization
I was having this problem as well. Thank you @puryushin for reporting it and @martapaw for the quick fix!
The option “Try to ajaxify the shop” does not work and reset to yes after save.
I face this problem too. I just keep trying and trying and trying and trying… eventually it somehow changes to No.
It’s annoying but unfortunately this is the best filter plugin I’ve found. If anyone finds a better one please share. Thank you.
- This reply was modified 4 years, 7 months ago by Michael Kwan.
Ok thank you!
Forum: Plugins
In reply to: [Sky Login Redirect] Doesn’t work – redirects to homepageI’ve disabled both codes from functions.php and the site is just running on this plugin now. Appreciate if anyone can shed any light on this. Thank you in advance.
Forum: Plugins
In reply to: [Sky Login Redirect] Doesn’t work – redirects to homepageFor reference, I was using code from the below, both don’t work anymore, not sure if this plugin is based on the same concept.
https://www.isitwp.com/redirect-back-to-referring-page-after-login/
if ( (isset($_GET[‘action’]) && $_GET[‘action’] != ‘logout’) || (isset($_POST[‘login_location’]) && !empty($_POST[‘login_location’])) ) {
add_filter(‘login_redirect’, ‘my_login_redirect’, 10, 3);
function my_login_redirect() {
$location = $_SERVER[‘HTTP_REFERER’];
wp_safe_redirect($location);
exit();
}
}// Function to redirect after login
add_filter(‘login_redirect’, ‘redirect_previous_page’, 10, 1);
function redirect_previous_page( $redirect_to ){
global $user;
$request = $_SERVER[“HTTP_REFERER”];
if ( in_array( $user->roles[0], array( ‘administrator’) ) ) {
return admin_url();
} elseif ( in_array( $user->roles[0], array( ‘subscriber’) ) ) {
return $request;
}
return $redirect_to;
}Awesome stuff, thanks so much! Will try it out!
Hi mr.clayton, just to check, is this what was added in v3.1.4?
That’s awesome! Thanks so much and I look forward to the next release ??
Credit card users would still auto-renew.
This Manual Renewal would only be for FPX transactions – when they get the renewal email every month, they click the Pay Now link and go to Checkout and initiate a fresh order checkout.
The website is a subscription to a newsletter. Manual renewals would result in customers getting a renewal invoice every month, which they have to manually click Pay Now which brings them to the Checkout page for manual checkout.
I see, thanks for the super fast response. How do other payment gateways do auto-debit though? Are recurring direct bank transfers completely not possible in any way with Stripe?
I enabled FPX on the test page by enabling Manual Renewals in the WC Subscriptions settings. No custom code.
SOLVED – It’s because of a copypaste error, where it changes the ‘ symbol to a different one. Simply manually delete and retype the ‘ symbols and it’ll work – both Elementor and WOOF Product Filter.
Screenshots here if above is unclear: https://pixl.my/solved-woof-product-filter-conflict-with-elementor/
Cheerio ??
SOLVED – It’s because of a copypaste error, where it changes the ‘ symbol to a different one. Simply manually delete and retype the ‘ symbols and it’ll work – both Elementor and WOOF Product Filter.
Screenshots here if above is unclear: https://pixl.my/solved-woof-product-filter-conflict-with-elementor/
Cheerio ??
- This reply was modified 5 years, 7 months ago by Michael Kwan.
- This reply was modified 5 years, 7 months ago by Michael Kwan.