Osclass forums

Support forums => General help => 3.8.x => Topic started by: Germar on June 03, 2019, 11:57:38 am

Title: How to show registration date in User Profile?
Post 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?
Title: Re: How to show registration date in User Profile?
Post by: p206ab on June 03, 2019, 02:00:23 pm
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?)
Title: Re: How to show registration date in User Profile?
Post by: Germar on June 03, 2019, 03:06:02 pm
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
Title: Re: How to show registration date in User Profile?
Post by: BritWeb on June 03, 2019, 03:59:48 pm
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'

Code: [Select]
<?php echo __('Registered on''bender'); ?> <?php echo osc_format_date(osc_user_field('dt_reg_date')); ?>
Cheers!