Categories

Featured templates

Zen Cart. How to manage social icons module

Phil Nowak July 18, 2012
Rating: 5.0/5. From 1 vote.
Please wait...

In this tutorial you will learn the way to manage social icons display on products page: images, links, display.

When you open product page you are able to see similar icons – we will edit it.

You can locate social icons module in your zen-cart admin. Open your admin panel, and go to Configuration >> Social Media Icons

You will get the following control panel:

It allows you to turn “on”/”off” every separate icon or all buttons at once.

In case you need to edit link or image, you need to use FTP

  1. Open your FTP manager, then locate and open folder “includes/functions/extra_functions”
  2. You will be able to see several files – the one you need is “social_media.php”
  3. You will see lots of scripting but it is really easy to edit as it is separated into logical blocks, each block is a separate icon, e.g. (facebook icon):
    if (FACEBOOK_STATUS == 1) { $fb_image = zen_image(DIR_WS_IMAGES . 'facebook.png', '', '24', '24', 'class="socialImage"');
    
      $media_icons .= '<a class="facebook tooltips" href="http://www.facebook.com/sharer.php?u='.urlencode(zen_href_link(zen_get_info_page($products_id),'cPath='.(int)$_GET['cPath'].'&products_id=' . $products_id)).'&t='.$products_name.'" rel="external nofollow" target="_blank" title="Share this on Facebook"/>'.$fb_image.'</a>'.'&nbsp';
    
    }
  4. Editing image is really easy – you just need to understand the top part of icon block:
    $fb_image = zen_image(DIR_WS_IMAGES . 'facebook.png', '', '24', '24', 'class="socialImage"');

    The actual image link is: DIR_WS_IMAGES . ‘facebook.png’

    The first part means your zen-cart image folder located at your store root

    And the next part is your icon file title – full path will be images/facebook.png

  5. Editing link is same easy as image – just locate proper script to replace with new link. The actual links starts right after: href=” and ends before ” rel

    The default link looks really huge as it works automatically but you may need to change it to static one. Just replace it with a static link and see the way it works.

  6. Now the last part to edit is rollover text

    Just edit same file (“/includes/functions/extra_functions/social_media.php”)

    You can locate each rollover text at the end of proper blocks, e.g. (facebook block):

    				if (FACEBOOK_STATUS == 1) {
    
      $fb_image = zen_image(DIR_WS_IMAGES . 'facebook.png', '', '24', '24', 'class="socialImage"');
    
      $media_icons .= '<a class="facebook tooltips" href="http://www.facebook.com/sharer.php?u='.urlencode(zen_href_link(zen_get_info_page($products_id),'cPath='.(int)$_GET['cPath'].'&products_id=' . $products_id)).'&t='.$products_name.'" rel="external nofollow" target="_blank" title="Share this on Facebook"/>'.$fb_image.'</a>'.'&nbsp';
    
    }

    At the end you are able to locate appropriate text and replace it easily – “Share this on Facebook”

  7. Thank you for paying attention to our video tutorials. Please contact us if you have any issues in editing the template. Good Luck!!!

    Feel free to check the detailed video tutorial below:

    Zen Cart. How to manage social icons module
This entry was posted in ZenCart Tutorials and tagged icons, manage, social, ZenCart. Bookmark the permalink.

Submit a ticket

If you are still unable to find a sufficient tutorial regarding your issue please use the following link to submit a request to our technical support team. We'll provide you with our help and assistance within next 24 hours: Submit a ticket