I’ve entered my URL for social networks, but they are not showing.
Do I need to do anything else?
5 answers
@ Abarba,
Please PM me your site’s url, admin and ftp credentials, I’ll detect the root of issue and help you out.
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>
Could you please post if Sherlock’s solution helped you out? thank you!
๐
No. It did not work.
I did follow suggestion by Shelock Home above to get it fixed on your site, please check again.