Social Tabs Missing

I’ve entered my URL for social networks, but they are not showing.

Attachment 34305

Do I need to do anything else?

5 answers

Profile photo of Sherlock 0.00 $tone March 3, 2014
Public

You can go to the app/design/frontend/default/jm_book/template/page folder and open these files 1column.phtml, 2columns-left.phtml and 2columns-right.phtml. You would see this block of code:

PHP Code:

 <?php if($baseconfig["showsocial"]): ?>
        <div class="sidebar-socials">
            <?php if($baseconfig["urlfacebook"]): ?>
            <a href="<?php echo $baseconfig["urlfacebook"]; ?>" class="icon-facebook facebook"></a>
            <?php endif; ?>
            <?php if($baseconfig["urltwitter"]): ?>
            <a href="<?php echo $baseconfig["urltwitter"]; ?>" class="icon-twitter twitter"></a>
            <?php endif; ?>
            <?php if($baseconfig["urlgoogleplus"]): ?>
            <a href="<?php echo $baseconfig["urlgoogleplus"]; ?>" class="icon-google-plus google-plus"></a>
            <?php endif; ?>
            <?php if($baseconfig["urlpinterest"]): ?>
            <a href="<?php echo $baseconfig["urlpinterest"]; ?>" class="icon-pinterest pinterest"></a>
            <?php endif; ?>
            <?php if($baseconfig["urltumblr"]): ?>
            <a href="<?php echo $baseconfig["urltumblr"]; ?>" class="icon-tumblr tumblr"></a>
            <?php endif; ?>
            <?php if($baseconfig["urlskype"]): ?>
            <a href="skype:<?php echo $baseconfig["urlskype"]; ?>?call" class="icon-skype skype"></a>
            <?php endif; ?>
        </div>
    <?php endif; ?>


Just change it to:

PHP Code:

        <div class="sidebar-socials">
            <?php if($baseconfig["urlfacebook"]): ?>
            <a href="<?php echo $baseconfig["urlfacebook"]; ?>" class="icon-facebook facebook"></a>
            <?php endif; ?>
            <?php if($baseconfig["urltwitter"]): ?>
            <a href="<?php echo $baseconfig["urltwitter"]; ?>" class="icon-twitter twitter"></a>
            <?php endif; ?>
            <?php if($baseconfig["urlgoogleplus"]): ?>
            <a href="<?php echo $baseconfig["urlgoogleplus"]; ?>" class="icon-google-plus google-plus"></a>
            <?php endif; ?>
            <?php if($baseconfig["urlpinterest"]): ?>
            <a href="<?php echo $baseconfig["urlpinterest"]; ?>" class="icon-pinterest pinterest"></a>
            <?php endif; ?>
            <?php if($baseconfig["urltumblr"]): ?>
            <a href="<?php echo $baseconfig["urltumblr"]; ?>" class="icon-tumblr tumblr"></a>
            <?php endif; ?>
            <?php if($baseconfig["urlskype"]): ?>
            <a href="skype:<?php echo $baseconfig["urlskype"]; ?>?call" class="icon-skype skype"></a>
            <?php endif; ?>
        </div>

#2

Please login or Register to Submit Answer

Written By

Comments