*

Ivan Kataev

  • ***
  • 54 posts
Item ID on the page.
« on: April 05, 2022, 04:14:02 PM »
How to display the product ID in the list?

Marked as best answer by Ivan Kataev on April 06, 2022, 11:41:50 AM
*

MB Themes

Re: Item ID on the page.
« Reply #1 on: April 05, 2022, 09:22:51 PM »
Code: [Select]
<?php echo osc_item_id(); ?>
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

uzm

  • **
  • 14 posts
Re: Item ID on the page.
« Reply #2 on: April 14, 2022, 11:09:00 PM »
Hi, In gamma theme this code is already there but still not showing Ad ID. Please find attached screenshot. Thanks

*

cartagena68

  • ***
  • 71 posts
Re: Item ID on the page.
« Reply #3 on: April 15, 2022, 12:10:30 AM »
Those are meta property, are not supposed to show in front end. You need to add the code in item.php where you want to show the ID, something  like this
Code: [Select]
<?php echo "Item ID: ".osc_item_id(); ?>

*

uzm

  • **
  • 14 posts
Re: Item ID on the page.
« Reply #4 on: April 15, 2022, 12:14:18 AM »
roger that. Thank you!