Forum Replies Created

Viewing 1 replies (of 1 total)
  • Hello

    I’ve found a solution for this.

    You have to replace on the footer.php file this block of code

    <?php
    							foreach($social_lists as $key => $value) {
    								if(!empty($value)) {
    									if($key === 'github') {
    										$key = 'github-alt';
    									}
    									echo '<li><a href="'.$value.'" target="_blank"><i class="icon-'.$key.'"></i></a></li>';
    								}
    							}
    						?>

    for this

    <li><a href="https://www.facebook.com/..........." target="_blank"><i class="icon-facebook"></i></a></li>
                            <li><a href="https://twitter.com/........" target="_blank"><i class="icon-twitter"></i></a></li>
                            <li><a href="http://pt.linkedin.com/in/......" target="_blank"><i class="icon-linkedin"></i></a></li>
                            <li><a href="http://instagram.com/......" target="_blank"><i class="icon-instagram"></i></a></li>

    Replace the ….. for your links.

Viewing 1 replies (of 1 total)