WordPress教程:WooCommerce自定义添加到购物车消息

自定义添加到购物车消息

/**
 * Custom Add To Cart Messages
 * Add this to your theme functions.php file
 **/
add_filter( 'woocommerce_add_to_cart_message', 'custom_add_to_cart_message' );
function custom_add_to_cart_message() {
  global $woocommerce;
 
  https:// Output success messages
  if (get_option('woocommerce_cart_redirect_after_add')=='yes') :
 
    $return_to  = get_permalink(woocommerce_get_page_id('shop'));
 
    $message    = sprintf('<a href="%s" class="button">%s</a> %s', $return_to, __('Continue Shopping →', 'woocommerce'), __('Product successfully added to your cart.', 'woocommerce') );
 
  else :
 
    $message    = sprintf('<a href="%s" class="button">%s</a> %s', get_permalink(woocommerce_get_page_id('cart')), __('View Cart →', 'woocommerce'), __('Product successfully added to your cart.', 'woocommerce') );
 
  endif;
 
    return $message;
}

在哪里添加此代码?

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

WordPress技巧

WordPress教程:WooCommerce添加自定义费用到购物车

2019-3-17 16:15:22

WordPress技巧

WordPress教程:WooCommerce向管理员电子邮件添加付款方式

2019-3-17 16:18:00

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