Osclass forums
Support forums => General help => 3.8.x => Topic started by: Germar on June 04, 2019, 10:46:56 am
-
Hi,
Is it possible to place the expiration date (dt_expiration) of an item at the itemdisplay?
Regards, Germar
-
The normal date in the format that is saved in database
<?php echo osc_item_dt_expiration(); ?>
And formatted date using osclass function
<?php echo osc_format_date(osc_item_dt_expiration()); ?>
-
The normal date in the format that is saved in database
<?php echo osc_item_dt_expiration(); ?>
And formatted date using osclass function
<?php echo osc_format_date(osc_item_dt_expiration()); ?>
Thanks calinbehtuk for the help! Implemented and it works!