atwanted
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] delete data in “customers”Hello, this is how I resolved this problem, for all’s information:
1) Go here to Download “transients-manager” plug-in then activate it:https://wordpress.org/plugins/transients-manager/
2) Go your server, Open your Database Manager(if you’re using Cloudways, check this article then you’ll find it: https://support.cloudways.com/en/articles/5124105-manage-your-databases-using-the-cloudways-database-manager)
3) in database UI, Find “WP_WC_CUSTOMER_LOOKUP”, select customers that you want to delete or edit.
4) Press “Save”.
5) Go wordpress/Tools/transients-manager, delete all files which has text with “_transient_wc_report_customers”.
there will be a number after it like: _transient_wc_report_customers_a391811b3867814b9f8a9306cc690097
and this will remove the customers (of course the prior methods need to be done as mentioned in this thread).Then you will see your unwanted customers were deleted successfully from your woocommerce/customers.
Above is how I fix this after spend couple of hours study, hope it works for you too.
Hello @nayeeem
I meet this problem too – a free course contains lesson which is with a embedded code (a video) recorded via screencastify.
This video is shareable, but the code seems like it was saved in my google drive, so I’m wondering does this related to security concern (ie. google drive is private attribute so nor Tutur LMS or others can access)? however while I was trying this I am logging, still cannot play that video of mine.
any advise is appreciated.
Hello @nayeeem
Today I meet this issue too.
May I know has already any solution released during these 3months?
if so, would be really appreciated for your advice please..Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] Monetizing: WooCommerceHello Hello, again it’s me.
I just removed my .php code and re-tried this free plug-in, now it’s working!
root cause is the WC must turn off test-mode (which I forgot to..)
anyway now it seems works fine, great support, thanks for all of you!Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] Monetizing: WooCommerceHello @nayeeem,
Thanks for the tip. tried this plugin unfortunately it didn’t work either. sure not if it’s because Taiwan is not using Paypal but another 3rd-party plugin call ‘ecpay” in WC.
on the other hand, I found my functions.php file child themes under /public_html/wp-content/themes/astra-child and already pasted above code into. but tested and it doesn’t work either….
If you have further advice, would be much appreciated pls.
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] Monetizing: WooCommerceHello munayam:
Many thanks, but take further step to look some people shared in GibHub, seems this way works only intermittently..?
If by insert below to a php file, where should we put this php file into, I mean, where and when the WC triggers the behavior? many thanks:
/**
* Auto Complete all WooCommerce orders.
*/
add_action( ‘woocommerce_thankyou’, ‘custom_woocommerce_auto_complete_order’ );
function custom_woocommerce_auto_complete_order( $order_id ) {
if ( ! $order_id ) {
return;
}$order = wc_get_order( $order_id );
$order->update_status( ‘completed’ );
}Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] Monetizing: WooCommerceHello, to someone who can be expert to this issue:
I assigned a WC product to a course, do tick BOTH – VIRTUAL PRODUCT and DOWNLOADABLE PRODUCT. But this way doesn’t work for student get immediately enroll-able after paid.
Please somebody help…?