K
K
Kennardys2018-12-18 22:26:30
WooCommerce
Kennardys, 2018-12-18 22:26:30

How to display product id in woocommerce card?

How to display the product id in its card?
I found a solution, but I don't know where to put it.
I watched a video on changing the product card, read several articles. Apparently I'm too stupid ...
Here is an example of a solution that I found. But where do you put it? Maybe there are other ways?

add_action( 'woocommerce_before_single_product_summary', 'cusom_woo_info_1', 10 );
function cusom_woo_info_1() {
    global $post;
    echo 'Product ID: ' . $post->ID;
}

Answer the question

In order to leave comments, you need to log in

1 answer(s)
P
Pychev Anatoly, 2018-12-18
@Kennardys

To your theme's functions.php file

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question