• The footer on this theme only allows you to change the copyright information and that field will not allow html links. How do I add the privacy statement to the footer of this page?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hello @wpotter,

    As the theme is not providing any feature for the additional links, you can use custom HTML to set links and add it in wp-content=>themes=>simple-life=>footer.php file.
    The example is as below

    <div id="copyright-wrap">
      <div class="copyright-text"><?php echo wp_kses_post( $copyright_text ); ?>
        <span class="sep"> | </span>
        <a href="<?php echo esc_url( _( 'https://www.google.com/' ) ); ?>"><?php printf( esc_html__( 'Privacy Policy')); ?></a>
      </div>
    </div>

    Hope this will resolve your issue.
    Thanks

Viewing 1 replies (of 1 total)
  • The topic ‘Privacy Statement – Adding it to Footer’ is closed to new replies.