Add Hyperlink to whatsapp and website
-
Hello,
Please how can I make the whatsapp and email appear as a clickable link
add_action( "adverts_tpl_single_bottom", function() { remove_action( "adverts_tpl_single_bottom", "adverts_single_contact_information_box", 2000 ); add_action( "adverts_tpl_single_bottom", "my_adverts_single_contact_information_box", 2000 ); }, 100 ); function my_adverts_single_contact_information_box( $post_id ) { ?> <div class="adverts-contact-box adverts-contact-box-toggle"> <p class="adverts-contact-method"> <span class="adverts-icon-phone adverts-contact-icon" title="<?php _e("Phone", "adverts") ?>"></span> <span class="adverts-contact-phone"></span> </p> <p class="adverts-contact-method"> <span class="adverts-icon-whatsapp adverts-contact-icon" title="<?php _e("WhatsApp", "adverts") ?>"></span> <span class="adverts-contact-whatapp"><?php echo esc_html( get_post_meta( $post_id, "whatsapp_field", true ) ) ?></span> </p> <p class="adverts-contact-method"> <span class="adverts-icon-mail-alt adverts-contact-icon" title="<?php _e("Email", "adverts") ?>"></span> <span class="adverts-contact-email"></span> </p> <p class="adverts-contact-method"> <span class="adverts-icon-internet-explorer adverts-contact-icon" title="<?php _e("Website", "adverts") ?>"></span> <span class="adverts-contact-website"><?php echo esc_html( get_post_meta( $post_id, "website_field_17", true ) ) ?></span> </p> </div> <?php }
Thanks
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Add Hyperlink to whatsapp and website’ is closed to new replies.