• Resolved howardlie

    (@howardlie)


    Hello i want to change this url

    Please help me.. This is urgent. I tried looking woocommerce files but no clues.
    Thank you. ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello @howardlie,
    Please add the following lines of code in your functions.php file of the current activated theme.
    Add the URL in the code you wish to redirect to on clicking on the “Pay” button and the redirection will work.

    add_filter( ‘woocommerce_get_checkout_payment_url’, ‘change_pay_url_my_account_page’, 10, 2);
    function change_pay_url_my_account_page( $pay_url, $this ) {
    $pay_url = “YOUR DESTINATION URL”;
    return $pay_url;
    }

    Hope this works as per your need.

    Thread Starter howardlie

    (@howardlie)

    Thank you so much @wbcomdesigns . It helped me a lot ??
    Thank you again for helping me ??

    I’m glad that I could help.

    Thread Starter howardlie

    (@howardlie)

    Can I know where did you learn to code php?
    Thank you.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Change Orders “Pay” url at my account page’ is closed to new replies.