Guest User

Untitled

a guest
Dec 15th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. add_action('wp_ajax_add_transfer', 'process_add_transfer');
  2. add_action('wp_ajax_nopriv_add_transfer', 'process_add_transfer');
  3. function process_add_transfer() {
  4. global $woocommerce;
  5. wc_add_notice( 'This is my custom error', 'error' );
  6. wp_redirect( get_permalink(125) ); //this is the same page form is on
  7. }
  8.  
  9. wc_print_notices();
  10.  
  11. do_action( 'woocommerce_set_cart_cookies', true );
Add Comment
Please, Sign In to add comment