BS
$product = wc_get_product( $post->ID );
Size: a a a
BS
M
PB
BS
add_action('wp_enqueue_scripts', 'sortable');
function sortable() {
if(is_product()){
global $post;
$post_id = $post->ID;
$product = wc_get_product( $post_id );
$type = $product->get_type();
if( $type == 'variable' ){
wp_enqueue_script( 'custom-js', get_stylesheet_directory_uri() . '/js/sortable.js', array( 'jquery' ),'',true );
}
}
}
М
М
IH
М
IH
М
АС
М
IH
VK
VK
АС
MD