Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. /* отключить таб отзывы на странице товара */
  2. add_filter( 'woocommerce_product_tabs', 'sb_woo_remove_reviews_tab', 98);
  3. function sb_woo_remove_reviews_tab($tabs) {
  4. unset($tabs['reviews']);
  5. return $tabs;
  6. }
  7.  
  8. /* заменить или убрать название под табом */
  9. add_filter('woocommerce_product_description_heading', 'my_product_description_heading',10,1);
  10. function my_product_description_heading($description) {
  11. $description = '';
  12. return $description;
  13. }
  14.  
  15. /* замена текста кнопки добавить в корзину */
  16. add_filter( 'add_to_cart_text', 'woo_custom_cart_button_text' );
  17. //For Single Product Page.
  18. add_filter( 'woocommerce_product_single_add_to_cart_text', 'woo_custom_cart_button_text' );
  19. //For Archives Product Page.
  20. add_filter( 'woocommerce_product_add_to_cart_text', 'woo_custom_cart_button_text' );
  21. function woo_custom_cart_button_text()
  22. {
  23. return __( 'В КОРЗИНУ', 'woocommerce' );
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement