T3Social / NgineS

The Ultimate PHP Social Network Platform
GNU Affero General Public License v3.0
1 stars 0 forks source link

Issue: Showing the registration date #83

Open lisandi opened 3 years ago

lisandi commented 3 years ago

Problem in Sngine we should avoid/fix in NgineS!

Is there a way to show the registration date?

lisandi commented 3 years ago

Solution posted by Alexander Prossliner on FB: https://www.facebook.com/groups/786267988168281

To show the registration date in profile: go to profile.tpl to line 498 and add:

                                <li>
                                     <div class="about-list-item">
                                     <i class="fa fa-clock fa-fw fa-lg"></i>
                                     {__("Member since:")} {$profile['user_registered']|date_format:" %B  %Y"}
                                     </div>
                               </li>
![Showing Registration date](https://user-images.githubusercontent.com/1982011/108802054-ed987500-75c9-11eb-81ec-4526d400f163.jpg)

from now you see the registration date (like image). You can combine it with pro membership for benefit your pro members. If you use an other language don´t forget to add the new language-key.

Showing Registration date