Position birthday - Birthday Cake
Position birthday
Is it possible to place the birthday cake next to the user name?
-
- Registered User
- Posts: 725
- Joined: Tue Mar 22, 2011 9:53 pm
Re: Position birthday
Rename the template event file within the extension from viewtopic_body_postrow_custom_fields_after to viewtopic_body_post_author_after and change this in that file
to
Code: Select all
<dd class="profile-birthdaycake">{postrow.USER_BIRTHDAYCAKE}</dd>
Code: Select all
{postrow.USER_BIRTHDAYCAKE}
Former Modifications/Extensions Team Member | My extensions | github | All requests for support via PM will be ignored
Appreciate the extensions/mods/support then you can support me by buying a beer
Appreciate the extensions/mods/support then you can support me by buying a beer
-
- Former Team Member
- Posts: 22092
- Joined: Wed Jun 22, 2005 4:33 pm
- Location: Your display
- Name: Rich McGirr
Re: Position birthday
Following these changes, I have a white page
Code: Select all
<!-- IF postrow.USER_BIRTHDAYCAKE -->
{postrow.USER_BIRTHDAYCAKE}
<!-- ENDIF -->
-
- Registered User
- Posts: 725
- Joined: Tue Mar 22, 2011 9:53 pm
Re: Position birthday
Purge the cache.
Former Modifications/Extensions Team Member | My extensions | github | All requests for support via PM will be ignored
Appreciate the extensions/mods/support then you can support me by buying a beer
Appreciate the extensions/mods/support then you can support me by buying a beer
-
- Former Team Member
- Posts: 22092
- Joined: Wed Jun 22, 2005 4:33 pm
- Location: Your display
- Name: Rich McGirr
Re: Position birthday
Hello!
I would like to have the birthday cake appear at the very end of the mini profile (beneath "Contact") instead of between "Joined" and "Contact". Would that be possible?
Thank you in advance for your help!
I would like to have the birthday cake appear at the very end of the mini profile (beneath "Contact") instead of between "Joined" and "Contact". Would that be possible?
Thank you in advance for your help!
-
- Registered User
- Posts: 3
- Joined: Fri Mar 03, 2017 5:27 pm
- Location: Germany
Re: Position birthday
Change the naming of the prosilver/template/event/viewtopic_body_postrow_custom_fields_after to viewtopic_body_contact_fields_after. Then purge the cache.
Former Modifications/Extensions Team Member | My extensions | github | All requests for support via PM will be ignored
Appreciate the extensions/mods/support then you can support me by buying a beer
Appreciate the extensions/mods/support then you can support me by buying a beer
-
- Former Team Member
- Posts: 22092
- Joined: Wed Jun 22, 2005 4:33 pm
- Location: Your display
- Name: Rich McGirr
Re: Position birthday
Thank you so much! It worked!
-
- Registered User
- Posts: 3
- Joined: Fri Mar 03, 2017 5:27 pm
- Location: Germany
Re: Position birthday
RMcGirr83 wrote:Rename the template event file within the extension from viewtopic_body_postrow_custom_fields_after to viewtopic_body_post_author_after and change this in that file
toCode: Select all
<dd class="profile-birthdaycake">{postrow.USER_BIRTHDAYCAKE}</dd>
Code: Select all
{postrow.USER_BIRTHDAYCAKE}
How is this done in 2024 with version 1.0.5? The coding has changed since your initial post.
Thanks
-
- Registered User
- Posts: 64
- Joined: Thu Dec 14, 2017 7:41 am
- Location: US
Re: Position birthday
From this
to this
don't forget to purge the cache after making that change.
Code: Select all
{% if postrow.BIRTHDAYCAKE %}
<dd><i class="icon fas fa-birthday-cake" style="font-size:16px; color:green;" title="{{ lang('VIEWTOPIC_BIRTHDAY') }}" aria-hidden="true"></i><span class="sr-only">{{ lang('VIEWTOPIC_BIRTHDAY') }}</span></dd>
{% endif %}
Code: Select all
{% if postrow.BIRTHDAYCAKE %}
<i class="icon fas fa-birthday-cake" style="font-size:16px; color:green;" title="{{ lang('VIEWTOPIC_BIRTHDAY') }}" aria-hidden="true"></i><span class="sr-only">{{ lang('VIEWTOPIC_BIRTHDAY') }}</span>
{% endif %}
Former Modifications/Extensions Team Member | My extensions | github | All requests for support via PM will be ignored
Appreciate the extensions/mods/support then you can support me by buying a beer
Appreciate the extensions/mods/support then you can support me by buying a beer
-
- Former Team Member
- Posts: 22092
- Joined: Wed Jun 22, 2005 4:33 pm
- Location: Your display
- Name: Rich McGirr
Re: Position birthday
Worked great! Thanks for helping me out.
-
- Registered User
- Posts: 64
- Joined: Thu Dec 14, 2017 7:41 am
- Location: US