Page 1 of 1

How to remove or edit the Social Network Icons?

PostPosted: 03 Jul 2015, 14:37
by vanilasky
How to remove or edit the Social Network Icons at the top of the page, Facebook, Twitter, etc?


Thankyou.

Re: How to remove or edit the Social Network Icons?

PostPosted: 03 Jul 2015, 14:45
by Xpycm
Dashboard -> Settings -> "Share" section

Re: How to remove or edit the Social Network Icons?

PostPosted: 28 Jan 2016, 11:16
by micropub
Does anyone know how to edit the facebook and twitter links?...I need to insert url

Re: How to remove or edit the Social Network Icons?

PostPosted: 28 Jan 2016, 14:37
by andipas
micropub wrote:Does anyone know how to edit the facebook and twitter links?...I need to insert url


In file - protected/extensions/sharebox/EShareBox.php

Code: Select all

        
'facebook' => array(
            
'url' => 'https://www.facebook.com/sharer.php?u={url}&t={title}',
            
'title' => 'Share this on Facebook',
            
'name' => 'Facebook'
        
),
        
'twitter' => array(
            
'url' => 'http://twitter.com/intent/tweet?url={url}&text={title}',
            
'title' => 'Tweet This!',
            
'name' => 'Twitter',
        ),