(solved) Youtube doesn't have a contact panel button - bar
(solved) Youtube doesn't have a contact panel button - bar
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
To add this in, go to ext/pgreca/pgsocial/styles/all/theme and locate file pg_social.css
Locate this part (line 1835)
Below it add
Save and close
Goto ext/pgreca/pgsocial/styles/all/template and locate file pg_social_profile.html
Locate this part (line 100)
Below it add
Locate this part (around line 267)
After add
Save and close
Locate this part (line 1835)
Code: Select all
#pg_social .panel .colum dl.social_networks dd.phpbb_twitch {
background-color: #6441a5;
}Code: Select all
#pg_social .panel .colum dl.social_networks dd.phpbb_youtube {
background-color: #cd201f;
}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 %}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 %}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 %}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 %}