• Resolved Bender3000

    (@bender3000)


    I am using the footer copyright field in another way than it is intended.
    I place my links to my legal and my privacy notice in it, worded very well and looked good.

    with the update from 1.5.4 to 1.5.7 the field is unable to interpret the html code. Any way to fix this?

Viewing 1 replies (of 1 total)
  • Hi Bender. It’s because the HTML is being removed from the content using the WP esc_attr() function. You can change it by editing the theme footer.php file:

    1. Copy the file to a child theme.

    2. Find this section near the bottom:

    <div id="copyright">
        <?php if ( ot_get_option( 'copyright' ) ): ?>
    	<p><?php echo esc_attr( ot_get_option( 'copyright' ) ); ?></p>

    3. Change the third line above to this:

    <p><?php echo ot_get_option( 'copyright' ); ?></p>
Viewing 1 replies (of 1 total)
  • The topic ‘Footer Copyright Links’ is closed to new replies.