公告
财富商城
积分规则
提问
发文
2020-03-08 06:20发布
【Aperson】
How can I add HTML code on woocommerce after a single product summary?
Here is the screenshot:
Regards Golam Rabbi
add_action( 'woocommerce_product_after_tabs', 'my_product_after_tabs' ); function my_product_after_tabs() { global $product; $product_id = $product->get_id(); if ( $product_id == 1 ) { echo 'html 1'; } elseif ( $product_id == 2 ) { echo 'html 2'; } elseif ( $product_id == 3 ) { echo 'html 3'; } else { echo 'product id not found!'; } }
add_action( 'woocommerce_product_after_tabs', 'my_product_after_tabs' ); function my_product_after_tabs() { echo 'html'; }
Or when overwriting and adjusting
https://github.com/woocommerce/woocommerce/blob/master/templates/single-product/tabs/tabs.php
https://github.com/woocommerce/woocommerce/blob/master/templates/single-product/related.php
最多设置5个标签!
Or when overwriting and adjusting
https://github.com/woocommerce/woocommerce/blob/master/templates/single-product/tabs/tabs.php
https://github.com/woocommerce/woocommerce/blob/master/templates/single-product/related.php