How can I add HTML code on woocommerce after a single product summary?
Here is the screenshot:
Regards Golam Rabbi
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() {
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
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!';
}
}