Replace ‘Selection option’ with ‘Selection [Attribute]’ in Variation Select Dropdowns
add_filter(‘woocommerce_dropdown_variation_attribute_options_args’, function ($args) { // Make sure we have an attribute slug and (optionally) the product context. $attribute = isset($args[‘attribute’]) ? $args[‘attribute’] : ”; $product = isset($args[‘product’]) && $args[‘product’] instanceof WC_Product ? $args[‘product’] : null; if ($attribute) { // Get…Continue reading