Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,

    In footer.php file, change the following:

    echo $zerif_address;

    to:

    echo ‘‘.$zerif_address.’ ‘;

    Same for echo $zerif_email; and echo $zerif_phone; ??

    Thread Starter giftors

    (@giftors)

    Can you help me by making it little more clear.

    I changed that code however am not sure where to use the hyperlink.

    Hi,

    You must change this:

    /* COMPANY ADDRESS */
    		if( !empty($zerif_address) ):
    			echo '<div class="'.$footer_class.' company-details">';
    				echo '<div class="icon-top red-text">';
    					if( !empty($zerif_address_icon) ) echo '<img src="'.esc_url(__($zerif_address_icon,'zerif-lite')).'">';
    				echo '</div>';
    				echo $zerif_address;
    			echo '</div>';
    		endif;
    
    		/* COMPANY EMAIL */
    
    		if( !empty($zerif_email) ):
    			echo '<div class="'.$footer_class.' company-details">';
    				echo '<div class="icon-top green-text">';
    
    					if( !empty($zerif_email_icon) ) echo '<img src="'.esc_url(__($zerif_email_icon,'zerif-lite')).'">';
    				echo '</div>';
    				echo $zerif_email;
    			echo '</div>';
    		endif;

    to this:

    /* COMPANY ADDRESS */
    		if( !empty($zerif_address) ):
    			echo '<div class="'.$footer_class.' company-details">';
    				echo '<div class="icon-top red-text">';
    					if( !empty($zerif_address_icon) ) echo '<img src="'.esc_url(__($zerif_address_icon,'zerif-lite')).'">';
    				echo '</div>';
    				echo echo '<a href="HERE_IS_YOUR_LINK">'.$zerif_address.'</a>';
    			echo '</div>';
    		endif;
    
    		/* COMPANY EMAIL */
    
    		if( !empty($zerif_email) ):
    			echo '<div class="'.$footer_class.' company-details">';
    				echo '<div class="icon-top green-text">';
    
    					if( !empty($zerif_email_icon) ) echo '<img src="'.esc_url(__($zerif_email_icon,'zerif-lite')).'">';
    				echo '</div>';
    				echo '<a href="HERE_IS_YOUR_LINK">'.$zerif_email.'</a>';
    			echo '</div>';
    		endif;

    Thank you,
    Rodica

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Hyperlink to the contact details in the footer section’ is closed to new replies.