If function exists not bringing it up
-
My footer has been set up to show a Li`nkedin, Twitter and Facebook logo if there is one saved into the contact details. I removed the dummy fake accounts that were put in by the developer as at the time we only had Linkedin so they did not show. However, now we have Facebook and Twitter saved into the contact details but they are not coming back up. Any ideas wehere I am going wrong?
<!-- right column --> <div class="col-md-4 text-center"> <div class="footer-social"> <h3>Stay connected</h3> <ul class="list-unstyled"> <!--<li> <a href=<?php if ( function_exists( 'contact_detail' ) ) { contact_detail( 'facebook' ); } ?>"> <span class="fa-stack fa-2x"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-facebook fa-stack-1x fa-inverse"></i> </span> </a> </li> <li> <a href="<?php if ( function_exists( 'contact_detail' ) ) { contact_detail( 'twitter' ); } ?>"> <span class="fa-stack fa-2x"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-twitter fa-stack-1x fa-inverse"></i> </span> </a> </li> <li> <a href="<?php if ( function_exists( 'contact_detail' ) ) { contact_detail( 'google' ); } ?>"> <span class="fa-stack fa-2x"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-google-plus fa-stack-1x fa-inverse"></i> </span> </a> </li>--> <li> <a href="<?php if ( function_exists( 'contact_detail' ) ) { contact_detail( 'linkedin' ); } ?>"> <span class="fa-stack fa-2x"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-linkedin fa-stack-1x fa-inverse"></i> </span> </a> </li> </ul> </div> </div> <!-- end right column -->The page I need help with: [log in to see the link]
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘If function exists not bringing it up’ is closed to new replies.