Osclass forums
Support forums => General help => 3.8.x => Topic started by: Germar on June 03, 2019, 11:57:38 am
-
Hi,
I want to show the registration date (dt_reg_date) in the user profile, to show to other members.
Is there someone how to do this?
-
There is a helper functionosc_user_regdate() you can use. So make a variable $something=osc_user_regdate(); and echo $something in a format that suits you (dd.mm.yy?)
-
There is a helper functionosc_user_regdate() you can use. So make a variable $something=osc_user_regdate(); and echo $something in a format that suits you (dd.mm.yy?)
Thanks for your input.
I implemeted it and it worked! Thanks again
-
Hi,
I want to show the registration date (dt_reg_date) in the user profile, to show to other members.
Is there someone how to do this?
The following is the basic code that works on 'Bender'
<?php echo __('Registered on', 'bender'); ?> <?php echo osc_format_date(osc_user_field('dt_reg_date')); ?>
Cheers!