Text under Add to cart (woocommerce)

房东的猫 提交于 2019-12-10 10:37:21

问题


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

Thanks


回答1:


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>';
}

Hope it helps!



来源:https://stackoverflow.com/questions/44059449/text-under-add-to-cart-woocommerce

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!