ZILZAL
Forum Replies Created
-
Hi,
Is it possible to do it manually by exporting the related database table ?Forum: Plugins
In reply to: [WooCommerce] Allow Manager to See and Edit only his own orders@shameemreza
Thank you very much, i will start from where you pointed.Forum: Plugins
In reply to: [WooCommerce] Allow Manager to See and Edit only his own ordersHi @shameemreza,
I tried User Role Editor , PublishPress Role Capabilities and Advanced Access Manager, none of these does have the ability to restrict the user to his own created orders only. it can restric accessing or editing all backend orders altoghether.
Even the Woocommerce in the HPOS database table doesn’t store the ID or name of the user who created the order. And i was trying to figure out a way to do it, maybe using custom field, or meta key.- This reply was modified 1 year, 1 month ago by ZILZAL.
Forum: Plugins
In reply to: [WooCommerce] Mobile number validationYou can use this code in your child theme functions.php or Code Snippit plugin, phone number should be 10 digits starting with “05”, you can change that and the error message to what suits you.
// Custom validation for Billing Phone checkout field add_action('woocommerce_checkout_process', 'custom_validate_billing_phone'); function custom_validate_billing_phone() { $is_correct = preg_match('/^05[0-9]{8}$/', $_POST['billing_phone']); if ( $_POST['billing_phone'] && !$is_correct) { wc_add_notice( __( '<strong>Error Message !</strong>' ), 'error' ); } }
Looks like i needed to update the Pro version manually.
Thanks.Forum: Plugins
In reply to: [Checkout Field Editor for WooCommerce - Checkout Manager] Reposition fieldsOh, Thats awesome,
Thank you very much.Forum: Plugins
In reply to: [Checkout Field Editor for WooCommerce - Checkout Manager] Reposition fieldsThank you very much,
I just submited the requested information with ticket ID [##7876##].
Forum: Plugins
In reply to: [Checkout Field Editor for WooCommerce - Checkout Manager] Reposition fieldsHi,
Can i share these with you privately ?
@photocrati
i tried , but nothing changed , the blank page still there.Hi photocrati,
i guess it was working before upgrading wordpress to the latest version.