How can I add html code on WooCommerce after singl

2020-03-08 05:59发布

问题:

How can I add HTML code on woocommerce after a single product summary?

Here is the screenshot:

Regards Golam Rabbi

回答1:

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



回答2:

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