Site logo

Archived topic

Display woocommerce product id in product page

3 replies · Started by melvin on November 5, 2020

Viewing posts 1–4 of 4

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?

https://imgur.com/a/KRzxP8p

Source of Product ID
https://imgur.com/a/AGRBXHk

Hi there,

try this:

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

Make sure you check Execute PHP in the hook.

Hi David,

Thanks it work perfectly.

Bravo!

Regards,
Melvin

Glad to hear that

This archived topic is closed to new replies.