Helpcenter +918010117117 https://cdn.storehippo.com/s/573db3149f0d58741f0cc63b/ms.settings/5256837ccc4abf1d39000001/57614ef64256dc6851749879-480x480.png" [email protected] https://www.facebook.com/StoreHippohttps://twitter.com/StoreHippohttps://www.linkedin.com/company/hippoinnovations/https://plus.google.com/+Storehippo/posts
B4,309-10 Spaze iTech Park, Sector 49, Sohna Road, 122001 Gurgaon India
call to replace anchor tags contains '/admin' in href

Social links

Social media is a very important aspect of digital marketing. You must have a presence on different social media sites e.g. Facebook, Twitter, Pinterest, Instagram etc. to boost store visibility and customer confidence. If you have the brand pages on social media sites on your storefront.

StoreHippo makes it easy to add social media buttons to your store. Most of our themes already come enabled with a feature to display the social media links.

Go to Settings > Site Settings section in StoreHippo Admin Panel to manage social media links. Some generic social links are provided there by default. You can delete or edit them to provide your own links. 

Add Social link

You can add a new social link by clicking on Add Social Link button. The following field appears:

Provider

Enter the name of the social media provider whose link you want to add.

Link

Enter the link of the social media provider.

Displaying Social Links on Storefront

You can display the social links in the footer of your store. You can also use ms.settings global object in your themes to access the social media links and display them as you prefer. To display social media buttons on the storefront, follow the below steps:

  1. Go to Design Theme from StoreHippo Admin Panel.
  2. In the HTML section, click on Show all widgets.
  3. Search and open the footer code. 
  4. Paste the following code snippet for the social media buttons in the footer code:
    <div class="row">
            <div class="text-center col-xs-12 ">
                <ul ng-show="ms.settings.social_links" class="social-links list-unstyled  list-inline">
                    <li ng-repeat="social_link in ms.settings.social_links" class="mobile">
                        <a href="{{social_link.link}}" target="_blank" data-toggle="tooltip" data-placement="top"
                           title="{{social_link.provider}}" data-original-title="{{social_link.provider}}">
                                              <span class="fa-stack fa-lg">
                                                  <i class="fa fa-circle fa-stack-2x">
                                                  </i>
                                                  <i class="fa fa-{{social_link.provider}} fa-stack-1x fa-inverse">
                                                  </i>
                                            </span>
                        </a>
                    </li>
                </ul>
            </div>
        </div>

  5. Social media button will be visible on the footer as shown below.
Similarly, you can display social links on the mobile footer. Paste the above code snippet in the Show all widgets > Mobile footer code.
2020-10-07T13:24:41.928Z