Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Each theme has specific settings of woocommerce plugin. I Think I know the solution of the problem. However, it is not convenient to explain here the details. If you want, send me a functions.php file and I will try to set snippet to the right place, and I’ll return the modified file to your email. My email is [email protected]

    Nenad

    kifiko,

    Do not replace add_filter function that already exist in functions.php file if you do not want to disrupt the proper integration of Woocommerce plugin into your theme.

    You only need to change URL after “return” to URL of your shop page, as I have done below:

    add_filter( ‘woocommerce_breadcrumb_home_url’, ‘woo_custom_breadrumb_home_url’ );
    function woo_custom_breadrumb_home_url() {
    return ‘http://www.ccrt.net/store/‘;
    }

    Insert this snippet after the last “}” on the end of the add_filter function already in youre functions.php file.

    Greetings

    evenbto, You said:

    if i cancel the PayPal process, the checkout will never complete, because the order is never placed

    Although checkout will never complete because the order is never placed, WooCommerce will cancel the order when the time set in the control panel expires. You can increase this amount of time, but what this means to me is drop off in the checkout process, or on the end with PayPal or another payment gateway.

    Here’s a screenshot of the admin setting: WooCommerce Settings

    Greetings

    There is an option in the control panel: WooCommerce > Settings > Inventory > Hold Stock (minutes). This setting determines how long WooCommerce will hold an item in the checkout/payment process before canceling the order and displaying the message “Unpaid order cancelled – time limit reached”.

    Thus, the customer does not have to cancel the order, because the system will do this after some time automatically. There is no need for cancel button.

    There is an option in the control panel: WooCommerce > Settings > Inventory > Hold Stock (minutes). This setting determines how long WooCommerce will hold an item in the checkout/payment process before canceling the order and displaying the message “Unpaid order cancelled – time limit reached”.

    Thus, the customer does not have to cancel the order, because the system will do this after some time automatically. There is no need for cancel button.

    Thread Starter wellebit

    (@wellebit)

    OK, sending in process… 🙂

Viewing 6 replies - 1 through 6 (of 6 total)