Advertisement
DeniGD

Change variable product button text

Apr 28th, 2024 (edited)
757
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. add_filter('woocommerce_product_add_to_cart_text', 'my_custom_add_to_cart_text', 10, 2);
  2. function my_custom_add_to_cart_text($text, $product) {
  3.     if ($product->is_type('variable')) {
  4.         $text = 'Купи'; // Тук поставете желания от вас текст
  5.     }
  6.     return $text;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement