• Resolved timkf18

    (@timkf18)


    Does this plugin remove the ability to pay or is it added as an option to not pay?

    Does this plugin have the ability to work with only certain user logins?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Nitin Prakash

    (@nitin247)

    Dear @timkf18,
    Thanks for posting your question

    Currently this plugin when active will

    1. Completely remove payment system from woocommerce
    2. Completes Order without Payment

    Currently this plugin does not support User Capabilities and Roles. If you can give more detailed description of the feature with “Ability to work with certain logins” I will be happy to provide this new feature in new version soon.

    Thanks in advance

    Hello

    I am selling downloadable products… After I have installed this plugin, customer is able to download the products right away.

    Any change, that I can change this behavior? I would like to receive the order without payment, and manually change the order to complete…

    Plugin Author Nitin Prakash

    (@nitin247)

    Thanks @omileb

    For using this plugin and reaching out to put your query.
    Currently, this plugin just removes the possibility of payment and completes the order i.e. the order has been successfully completed.
    Since the order gets completed that is why the customer may be able to Download the files.

    There can be many possibilities depending upon the scenario

    The code below might work if you place in your theme functions.php but I advise to test on Development before using this on Production

    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 );

    if( $order->get_status() == ‘completed’ )
    $order->update_status( ‘pending’ );
    }

    pay now link in mail to user clear the cart. does not do payment

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Questions’ is closed to new replies.