添加到购物车(woocommerce)下的文本 [英] Text under Add to cart (woocommerce)

查看:71
本文介绍了添加到购物车(woocommerce)下的文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

对于所有woocommerce产品,如何在添加到购物车"按钮下添加文字请联系我们进行批量购买查询".

How can I add a text saying "Contact us for bulk purchase enquiry" under 'Add to cart' button for all woocommerce products.

谢谢

推荐答案

尝试将此代码添加到您的functions.php文件中:

Try adding this code to your functions.php file :

add_action( 'woocommerce_after_add_to_cart_button', 'content_after_addtocart_button_func' );

function content_after_addtocart_button_func() {
// Echo content.
echo '<div  style="font-size:10px;"><em>(*Contact us for bulk purchase enquiry)</em></div>';
}

希望有帮助!

这篇关于添加到购物车(woocommerce)下的文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆