Tukar cart text di Archive Products

PHOTO EMBED

Sun Nov 13 2022 19:16:23 GMT+0000 (Coordinated Universal Time)

Saved by @brozool

add_filter( 'woocommerce_product_add_to_cart_text', 'bbloomer_archive_custom_cart_button_text' );
  
function bbloomer_archive_custom_cart_button_text() {
global $product;
 
$terms = get_the_terms( $product->ID, 'product_cat' );
 foreach ($terms as $term) {
            $product_cat = $term->name;
            break;
}
 
switch($product_cat)
{
    case 'category1';
        return 'Category 1 DAFTAR / TEMPAH'; break;
    case 'category2';
        return 'Category 2 DAFTAR / TEMPAH'; break;
// case 'category3'; etc...
// return 'Category 3 button text'; break;
 
    default;
        return 'DAFTAR / TEMPAH'; break;
}
}
content_copyCOPY