Page 1 of 1
(solved) Youtube doesn't have a contact panel button - bar
Posted: August 18th, 2023, 10:15 pm
by Mandi
Facebook and Twitter have a contact button - bar with icon and corporate color background, yet Youtube does not despite being part of core phpBB contact fields.
Re: Youtube doesn't have a contact panel button - bar
Posted: August 18th, 2023, 10:47 pm
by Mandi
To add this in, go to ext/pgreca/pgsocial/styles/all/theme and locate file pg_social.css
Locate this part (line 1835)
Code: Select all
#pg_social .panel .colum dl.social_networks dd.phpbb_twitch {
background-color: #6441a5;
}
Below it add
Code: Select all
#pg_social .panel .colum dl.social_networks dd.phpbb_youtube {
background-color: #cd201f;
}
Save and close
Goto ext/pgreca/pgsocial/styles/all/template and locate file pg_social_profile.html
Locate this part (line 100)
Code: Select all
{% if custom_fields.PROFILE_FIELD_IDENT == 'phpbb_twitter' %}<dd class="{{ custom_fields.PROFILE_FIELD_IDENT }}"><a target="_blank" href="https://twitter.com/{{ custom_fields.PROFILE_FIELD_VALUE }}"><i class="fa fa-twitter" aria-hidden="true"></i> Twitter</a></dd>{% endif %}
Below it add
Code: Select all
{% if custom_fields.PROFILE_FIELD_IDENT == 'phpbb_youtube' %}<dd class="{{ custom_fields.PROFILE_FIELD_IDENT }}"><a target="_blank" href="https://youtube.com/{{ custom_fields.PROFILE_FIELD_VALUE }}"><i class="fa fa-youtube-play" aria-hidden="true"></i> Youtube</a></dd>{% endif %}
Locate this part (around line 267)
Code: Select all
{% if custom_fields.PROFILE_FIELD_IDENT == 'phpbb_twitter' %}<dd class="{{ custom_fields.PROFILE_FIELD_IDENT }}"><a target="_blank" href="https://twitter.com/{{ custom_fields.PROFILE_FIELD_VALUE }}"><i class="fa fa-twitter" aria-hidden="true"></i> Twitter</a></dd>{% endif %}
After add
Code: Select all
{% if custom_fields.PROFILE_FIELD_IDENT == 'phpbb_youtube' %}<dd class="{{ custom_fields.PROFILE_FIELD_IDENT }}"><a target="_blank" href="https://youtube.com/{{ custom_fields.PROFILE_FIELD_VALUE }}"><i class="fa fa-youtube-play" aria-hidden="true"></i> Youtube</a></dd>{% endif %}
Save and close