“Woocommerce Изменение добавить в Cart Message” Ответ

Как изменить кнопку «Добавить в корзину» в WordPress

// To change add to cart text on single product page
add_filter( 'woocommerce_product_single_add_to_cart_text', 'woocommerce_custom_single_add_to_cart_text' ); 
function woocommerce_custom_single_add_to_cart_text() {
    return __( 'Buy Now', 'woocommerce' ); 
}

// To change add to cart text on product archives(Collection) page
add_filter( 'woocommerce_product_add_to_cart_text', 'woocommerce_custom_product_add_to_cart_text' );  
function woocommerce_custom_product_add_to_cart_text() {
    return __( 'Buy Now', 'woocommerce' );
}
m1ke510a

Woocommerce Изменение добавить в Cart Message

add_filter( 'wc_add_to_cart_message_html', 'exploretech_custom_add_to_cart_message_html' );
function exploretech_custom_add_to_cart_message_html() {
  $ext_custom_message = "You have successfully added the product, thanks for shopping with us";
  return $ext_custom_message;
}
Filthy Falcon

Ответы похожие на “Woocommerce Изменение добавить в Cart Message”

Вопросы похожие на “Woocommerce Изменение добавить в Cart Message”

Больше похожих ответов на “Woocommerce Изменение добавить в Cart Message” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования