在WooCommerce单品页

时间:2017-10-11 02:36:55

标签: php css wordpress woocommerce product

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

The code is right up on the button

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

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

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

2 个答案:

答案 0 :(得分: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

答案 1 :(得分:0)

此代码将其放置在“添加到购物车”按钮下方:

add_action( 'woocommerce_after_add_to_cart_form','content_after_addtocart', 100 );
  function content_after_addtocart() {
  // place your content below.
  echo 'Hello There !!';

   }