How to manage social icons

PariPro theme has integrated feature of social icons to link your social profiles (Facebook, Twitter, Google plus, Linkedin, Youtube, Instagram) on your website. These icons appear in footer region.
image

How to show / hide social icons from footer

Navigate to: Home >> Administration >> Appearance >> Settings >> PariPro

yourdomain.com/admin/appearance/settings/paripro

Under PariPro Theme Settings >> Social Network, you can show or hide these social icons from footer region. You can also specify profile page url here.
image

How to hide any particular social icon

To hide any individual social icon, just leave that profile URL empty. Suppose we want to hide Google Plus icon. So, we will leave the Google Plus profile url empty as shown in below image.
image

How to add more social icon

You may want to add more social icons like Flickr, Skype etc. Please follow below steps.

  1. Open /includes/footer.tpl.php file in any text editor.
  2. Find following code.
    <?php if(theme_get_setting('instagram_username')!=''): ?><li><a href="<?php echo theme_get_setting('instagram_username'); ?>" target="_blank" rel="nofollow"><i class="fa-instagram"></i></a></li><?php endif; ?>
  3. Just below this add new icon code like below. This code will add Drupal icon
    <li><a href="https://www.drupal.org/u/ravi_9793" target="_blank"><i class="fa-drupal"></i></a></li>

Please check this tutorial for icon codes.