Advertisement
wpgenie

ticket numbers full width

Jun 19th, 2019
657
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. /* Simpler version of https://pastebin.com/kVbjUM2a */
  2. /* This code should go to your child theme's functions.php file or custom plugin. */
  3.  
  4. add_action( 'woocommerce_init' , 'custom_remove_and_add_actions' );
  5. function custom_remove_and_add_actions(){
  6.     remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30);
  7.     add_action('woocommerce_after_single_product_summary', 'woocommerce_template_single_add_to_cart', 1);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement