/** * Pokazuj selektor wariantów bezpośrednio na liście produktów (shop/archive) */ add_action( 'woocommerce_after_shop_loop_item', 'custom_show_variations_on_loop', 5 ); function custom_show_variations_on_loop() { global $product; if ( ! $product->is_type( 'variable' ) ) { return; } $attributes = $product->get_variation_attributes(); $product_url = $product->get_permalink(); $product_id = $product->get_id(); echo '
'; } // Załaduj skrypty WooCommerce potrzebne do obsługi wariantów na stronie sklepu add_action( 'wp_enqueue_scripts', 'custom_enqueue_variation_scripts' ); function custom_enqueue_variation_scripts() { if ( is_shop() || is_product_category() || is_product_tag() ) { wp_enqueue_script( 'wc-add-to-cart-variation' ); } } Skip to content