Change Url button Continue Shopping on Thank you page

Change Url button Continue Shopping on Thank you page
//Change Url button Continue Shopping
function tzn_change_url_continue_shopping($order_received_buttons_html, $order) {
   // if( current_user_can( 'administrator' ) ){
   //      var_dump($order_received_buttons_html);
   //  }

    $order_received_buttons_html = '
    <div class="order-shop-button">
        <a href="/" class="button continue-shopping">' . __( 'Continue Shopping', 'tzn' ) . '</a>
    </div>';
    
    return $order_received_buttons_html;
}
add_filter('order_received_buttons', 'tzn_change_url_continue_shopping', 10, 2);

Leave a Reply

Your email address will not be published. Required fields are marked *