I wish to have the facebook icon showing but none of the others - how do I get rid of them please. I have left the field blank (where I would add the url) but they still show. Thanks
Social Icons
2 posts from 2 voices-
Posted 1 year ago #
-
Hey,
open up footer.php and search for following code:
<ul class="social_bookmarks"> <?php //contact icon $contact_page_id = avia_get_option('email_page'); if (function_exists('icl_object_id')) $contact_page_id = icl_object_id($contact_page_id, 'page', true); //wpml prepared if($contact_page_id) echo "<li class='mail'><a href='".get_permalink($contact_page_id)."'>".__('Send us Mail', 'avia_framework')."</a></li>"; if($dribbble = avia_get_option('dribbble')) echo "<li class='dribbble'><a href='http://dribbble.com/".$dribbble."'>".__('Follow us on dribbble', 'avia_framework')."</a></li>"; if($twitter = avia_get_option('twitter')) echo "<li class='twitter'><a href='http://twitter.com/".$twitter."'>".__('Follow us on Twitter', 'avia_framework')."</a></li>"; if($facebook = avia_get_option('facebook')) echo "<li class='facebook'><a href='".$facebook."'>".__('Join our Facebook Group', 'avia_framework')."</a></li>"; ?> <li class='rss'><a href="<?php avia_option('feedburner',get_bloginfo('rss2_url')); ?>"><?php _e('Subscribe to our RSS Feed', 'avia_framework')?></a></li> </ul> <!-- end social_bookmarks-->Change it to:
<ul class="social_bookmarks"> <?php if($facebook = avia_get_option('facebook')) echo "<li class='facebook'><a href='".$facebook."'>".__('Join our Facebook Group', 'avia_framework')."</a></li>"; ?> </ul> <!-- end social_bookmarks-->Posted 1 year ago #
Reply
You must log in to post.














