[Resolved] Display woocommerce product id in product page

Home Forums Support [Resolved] Display woocommerce product id in product page

Home Forums Support Display woocommerce product id in product page

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1519956
    melvin wang

    Hi,

    I would like to display the product id in every product page. I’m using GPP Hook element to woocommerce_single_product_summary.

    Could I know what code I’ve to insert so that the product ID will display as per below?

    View post on imgur.com

    Source of Product ID

    View post on imgur.com

    #1520270
    David
    Staff
    Customer Support

    Hi there,

    try this:

    <?php
    global $product;
    $id = $product->get_id();
    echo 'Product Id: ' . $id;
    ?>

    Make sure you check Execute PHP in the hook.

    #1520404
    melvin wang

    Hi David,

    Thanks it work perfectly.

    Bravo!

    Regards,
    Melvin

    #1520687
    David
    Staff
    Customer Support

    Glad to hear that

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.