在WooCommerce单个产品页面的“添加到购物车”按钮下添加自定义文本

问题描述 投票:3回答:1

所以我附上了我的问题的图像。

The code is right up on the button

基本上我在这里遵循Stack Overflow问题线程上的说明: Text under Add to cart (woocommerce)

我在那里发了5次问题而且有人不断删除它,所以我在这里再次发布它。请指教。

更新:我已经尝试过段落标记,中断标记和预标记。

php css wordpress woocommerce product
1个回答
1
投票

你可以试试这个(因为你会看到这是margin-top的CSS样式问题):

add_action( 'woocommerce_after_add_to_cart_button', 'custom_content_after_addtocart_button', 100 );
function custom_content_after_addtocart_button() {
    // custom content.
    echo '<br/><div><p style="font-size:10px; font-style=italic; margin-top:20px;">(*Contact us for bulk purchase enquiry)</p></div>';
}

代码位于活动子主题的function.php文件中(活动主题或任何插件文件)。

经过测试和工作。你会得到的:

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.