Show category ID on categories page right hand column
Posted: Sat Jul 16, 2022 11:40 am
I am trying somethin in my current old store and I needed to show the category ID on the right hand side of the category page.
I created the language define and found the place to edit and have added the following to categories.php
above
It does work, but I just wanted to check that I had it right. Is that the correct way to find the category_id.
I created the language define and found the place to edit and have added the following to categories.php
Code: Select all
$contents[] = ['text' => TEXT_CATEGORIES_ID . ' ' . ($cInfo->categories_id)];Code: Select all
$contents[] = ['text' => TEXT_DATE_ADDED . ' ' . tep_date_short($cInfo->date_added)];