Advertisement
borkolivic

Custom icons&text under add to cart button

Jan 8th, 2019
343
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. add_action( 'woocommerce_after_add_to_cart_button', 'add_content_after_add2cart_button' );
  2.  
  3. function add_content_after_add2cart_button() {
  4.  
  5.     echo '<div class="after_add2cart_content"> Add HTML code for 4 columns that contain icons + titles (then style with CSS)</div>';
  6.  
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement