Woocommerce Change 'Select Options’ Text

Hi Friends!
I would like to change the “select options” text from the Variable product in my pro site.
Can i use the following code without breaking the theme?

add_filter(‘woocommerce_dropdown_variation_attribute_options_args’, ‘custom_woocommerce_product_add_to_cart_text’, 10, 2);

function custom_woocommerce_product_add_to_cart_text($args){
$args[‘show_option_none’] = __( ‘Comprar’, ‘woocommerce’ );
return $args;
}

Thank you very much in advance!
Best regards!

Hello There,

Thanks for writing in! Please use this code instead:

add_filter('woocommerce_dropdown_variation_attribute_options_args', 'custom_woocommerce_product_add_to_cart_text', 10, 2);
function custom_woocommerce_product_add_to_cart_text($args){
  $args['show_option_none'] = __( 'Comprar', 'woocommerce' ); 
  return $args;
}

Please be very careful with the quotes or it will return a fatal error.

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.