Help getting Contact icons/links back
-
Hi,
On my website I had a contact block at the bottom with a Facebook icon and an Email icon that people could click on. Now the block is just empty, there are no icons or links anymore. Can anybody help me figure out why they disappeared. Here’s the code I found in template-home.php that seems to take care of that section:
<!-- START SOCIAL LINKS --> <div id="contact" class="text-center col-md-12 col-lg-6 no-padding"> <div class="inner-wrapper"> <div class="inner"> <?php if ( ! empty( $facebook ) ) { echo '<a href="' . esc_url( $facebook ) . '" class="icon-facebook social-icon" target="_blank" data-toggle="tooltip" data-placement="bottom" title="' . __( 'Connect with us on Facebook', 'inspiraction' ) . '"></a>'; } if ( ! empty( $email ) ) { echo '<a href="mailto:' . sanitize_email( $email ) . '" class="icon-mail4 social-icon email" target="_blank" data-toggle="tooltip" data-placement="bottom" title="' . __( 'Email us', 'inspiraction' ) . '"></a>'; } ?> </div> </div> </div> <!-- END SOCIAL LINKS -->Earlier in the file, I also found this :
$facebook = get_post_meta( $page_front, ‘wpcf-facebook-url’, true ); $email = get_post_meta( $page_front, ‘wpcf-global-email’, true );Any idea of why they are not showing up or what I could do to make them appear again ?
Thank you !
The page I need help with: [log in to see the link]
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
The topic ‘Help getting Contact icons/links back’ is closed to new replies.
