i want to display days left for item expiration date in user-items.php
<span><?php echo (date('Y', strtotime(osc_item_field('dt_expiration'))) > 3000 ? __('Never expire', 'beta') : __('Expire on', 'beta') . ' ' . date('Y/m/d', strtotime(osc_item_field('dt_expiration')))); ?></span>
any one can help to make this work?