• Resolved terrymack

    (@terrymack)


    I would like to add an active email link to the footer. Could you please provide the correct coding to enter in the Copyright Text field under Modality Theme Options > Theme Footer Settings. Thank you.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter terrymack

    (@terrymack)

    Resolved by modifying copyright.php in Child theme and adding HTML email link.

    Do you mind providing the code you used. I am looking to add links to my privacy policy and terms of use at the end of copyright.

    Thanks!

    Thread Starter terrymack

    (@terrymack)

    I created a child theme and a copyright.php file with the following code:

    <?php
     /**
     * @package Modality
     */
    $modality_theme_options = modality_get_options( 'modality_theme_options' );
    ?>
    <div id="copyright">
    	<div class="copyright-wrap">
    		<span class="left"><a href="<?php echo esc_url( home_url( '/' ) ) ?>"><?php echo esc_attr($modality_theme_options['footer_copyright_text']);?></a> |
    			<a href="mailto:[email protected]">[email protected]</a></span>
    	</div>
    </div><!--copyright-->
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Email address in footer’ is closed to new replies.