2017-06-20 2 views
1

Auf der Produktseite 'DropDown) Ich möchte den SELECT OPTIONS Text ändern und ich nehme an, dass dieser Code könnte sich aber nichts auf meiner Seite ändern, auch wenn ich leeren Cache. Danke für Ihre HilfeWoocommerce Ändern "Wählen Sie Option" Text in Variable Produkt Seite

add_filter('woocommerce_product_add_to_cart_text' , 'custom_woocommerce_product_add_to_cart_text'); 
function custom_woocommerce_product_add_to_cart_text() { 
    global $product;  
    $product_type = $product->product_type; 
    switch ($product_type) { 
case 'variable': 
      return __('Options', 'woocommerce'); 
     break; 
} 
} 

Antwort

1

den folgenden Code -

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'] = __('Options', 'woocommerce'); 
    return $args; 
} 
Verwandte Themen