Hi.
I need to change the social icons network in contact. i was looking to font awesome and there are icons for xing for example. Then I was looking to plg_gkcontact.php. I cant see how to change this so far.
Thank you .
Best regards
Daniel
if(
$this->params->get('fb_url') != '' ||
$this->params->get('twitter_url') != '' ||
$this->params->get('gplus_url') != '' ||
$this->params->get('linkedin_url') != '' ||
$this->params->get('pinterest_url') != '' ||
$this->params->get('rss_url') != ''
) {
$output .= '<p class="gkContactSocialIcons">';
if($this->params->get('fb_url') != '') {
$output .= '<a href="'.str_replace('&', '&', $this->params->get('fb_url')).'" class="gkContactFbIcon" target="_blank">Facebook</a>';
}
if($this->params->get('twitter_url') != '') {
$output .= '<a href="'.str_replace('&', '&', $this->params->get('twitter_url')).'" class="gkContactTwitterIcon" target="_blank">Twitter</a>';
}
if($this->params->get('gplus_url') != '') {
$output .= '<a href="'.str_replace('&', '&', $this->params->get('gplus_url')).'" class="gkContactGplusIcon" target="_blank">G+</a>';
}
if($this->params->get('linkedin_url') != '') {
$output .= '<a href="'.str_replace('&', '&', $this->params->get('linkedin_url')).'" class="gkContactLinkedinIcon" target="_blank">Linkedin</a>';
}
if($this->params->get('pinterest_url') != '') {
$output .= '<a href="'.str_replace('&', '&', $this->params->get('pinterest_url')).'" class="gkContactPinterestIcon" target="_blank">Pinterest</a>';
}
if($this->params->get('rss_url') != '') {
$output .= '<a href="'.str_replace('&', '&', $this->params->get('rss_url')).'" class="gkContactRssIcon" target="_blank">RSS</a>';
}
$output .= '</p>';
.gkContactFbIcon:before {
content: '\f09A';
}
.gkContactTwitterIcon:before {
content: '\f099';
}
.gkContactGplusIcon:before {
content: '\f0d5';
}
.gkContactLinkedinIcon:before {
content: '\f0e1';
}
.gkContactPinterestIcon:before {
content: '\f0d2';
}
.gkContactRssIcon:before {
content: '\f09e';
}