luizdevplugins
Forum Replies Created
-
Hello, we are using the default woocommerce hooks to set the status to be the very first status set as the order is placed, to avoid user getting 2 notifications. What usually happens is the payment method forcing to a specific status also, so it has priority. A possible solution to your case is setting the status on your functions.php file like this:
add_action('woocommerce_thankyou', 'woocommerce_thankyou_change_order_status', 10, 1 );
function woocommerce_thankyou_change_order_status( $order_id ){
if( ! $order_id ) return;
$order = wc_get_order( $order_id );
$order->update_status( 'on-hold' );
}- This reply was modified 2 years, 3 months ago by luizdevplugins.
As we haven’t received a response, I’ll mark this as resolved. Feel free to open a new topic, if you continue encountering issues or reopen this topic; we’d be happy to assist. Thank you!
As we haven’t received a response, I’ll mark this as resolved. Feel free to open a new topic, if you continue encountering issues or reopen this topic; we’d be happy to assist. Thank you!
Forum: Plugins
In reply to: [Custom Order Status Manager for WooCommerce] Order Status Options is blankAs we haven’t received a response, I’ll mark this as resolved. Feel free to open a new topic, if you continue encountering issues or reopen this topic; we’d be happy to assist. Thank you!
Forum: Plugins
In reply to: [Custom Order Status Manager for WooCommerce] Kadence conflictAs we haven’t received a response, I’ll mark this as resolved. Feel free to open a new topic, if you continue encountering issues or reopen this topic; we’d be happy to assist. Thank you!
As we haven’t received a response, I’ll mark this as resolved. Feel free to open a new topic, if you continue encountering issues or reopen this topic; we’d be happy to assist. Thank you!
Forum: Plugins
In reply to: [Custom Order Status Manager for WooCommerce] AutomateWoo Status no showingAs we haven’t received a response, I’ll mark this as resolved. Feel free to open a new topic, if you continue encountering issues or reopen this topic; we’d be happy to assist. Thank you!
Forum: Plugins
In reply to: [Custom Order Status Manager for WooCommerce] Problem with sending 2 emailAs we haven’t received a response, I’ll mark this as resolved. Feel free to open a new topic, if you continue encountering issues or reopen this topic; we’d be happy to assist. Thank you!
Forum: Plugins
In reply to: [Custom Order Status Manager for WooCommerce] Reports and order pageAs we haven’t received a response, I’ll mark this as resolved. Feel free to open a new topic, if you continue encountering issues or reopen this topic; we’d be happy to assist. Thank you!
As we haven’t received a response, I’ll mark this as resolved. Feel free to open a new topic, if you continue encountering issues or reopen this topic; we’d be happy to assist. Thank you!
As we haven’t received a response, I’ll mark this as resolved. Feel free to open a new topic, if you continue encountering issues or reopen this topic; we’d be happy to assist. Thank you!
Hello, we checked this plugin and it raises an error when we call a standard woocommerce function to list all available payment methods during our plugin settings load ( WC_Payment_Gateways()->payment_gateways() ) . For making this payment method compatible with our plugin we would need move all settings to inside woocommerce settings. We are measuring the pro and cons of this decision since it is a huge change on user interface. If you want this custom alternative and specific support please fill the form in https://brightplugins.com/support/
At this the moment we are going to include on a future release a list of payment methods we support
Thanks cyrusmz, we are still checking this behavior. Maybe we will include different options to change status, since each way is more (or less) suitable to different business
Hello martino, could you confirm what is the plugin for payment method? There are payment methods that force the status before our plugin, so we need investigate for a conflict
We are going to include a change for admin notice on next release