WordPress教程:WooCommerce更改添加到购物车按钮文字

更改添加到购物车按钮文字

/**
 * Change the add to cart text on single product pages
 */
function woo_custom_cart_button_text() {
  return __('My Button Text', 'woocommerce');
}
add_filter('single_add_to_cart_text', 'woo_custom_cart_button_text');
 
 
 
/**
 * Change the add to cart text on product archives
 */
function woo_archive_custom_cart_button_text() {
  return __( 'My Button Text', 'woocommerce' );
}
add_filter( 'add_to_cart_text', 'woo_archive_custom_cart_button_text' );

在哪里添加此代码?

将PHP代码放在主题或子主题functions.php文件的底部。

WordPress技巧

WordPress教程:WooCommerce添加自定义货币/符号

2019-3-17 15:30:54

WordPress技巧

WordPress教程:WooCommerce重定向订阅添加到购物车到结账页面

2019-3-17 15:35:37

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索