Advertisement
borkolivic

Show variation SKU under title

Jan 17th, 2023
805
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. add_action( 'woocommerce_single_product_summary', 'mx_show_sku_variable', 5 );
  2. function mx_show_sku_variable(){
  3.    global $product;
  4.    if ( ! $product->is_type( 'variable' ) ) return;
  5.    echo '<div class="sku_info"></div>';
  6.    wc_enqueue_js( "
  7.      $(document).on('found_variation', 'form.cart', function( event, variation ) {  
  8.         $('.sku_info').html(variation.sku);      
  9.      });
  10.   " );
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement