• Resolved AbbaTheHorse

    (@mattalexander)


    Hi

    Is it possible to add a dynamic year in the footer, e.g. (C) 2019My Company Name?

    Thank you,

    Matt

Viewing 1 replies (of 1 total)
  • Hi.
    Yes, you can use the footer hook we have available.

    <?php
    if( !function_exists('timersys_add_footer') ) {
    
    	function timersys_add_footer() {
    		return '(C) '.date('Y').' My Company Name';
    	}
    
    	add_filter('mailtpl/templates/footer_text', 'timersys_add_footer', 10, 1);
    }
    ?>

    Regards

Viewing 1 replies (of 1 total)

The topic ‘Dynamic year in footer’ is closed to new replies.