Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #114271
    Antoon
    Participant

    Hi,

    How can i change te following text in the footer.

    Copyright © 2017 Welkom bij Hatert Bouwt Alle rechten voorbehouden.

    to

    Copyright © 2017 Hatert Bouwt Alle rechten voorbehouden.

    if i change the sitetitle Welkom bij Hatert Bouwt to Hatert Bouwt the copyright text is stil the same.
    How can i solve this problem?

    the URL to the site is:

    http://selecthatert.nl/bouwt

    Thanks for your help

    Greetings

    Antoon Ockers

    #114297
    Mahesh
    Keymaster

    @antoon: For that, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s functions.php, add the following codes.

    add_action('after_setup_theme', 'catchevolution_child_footer_invalidate_caches');
    function catchevolution_child_footer_invalidate_caches(){
        delete_transient( 'catchevolution_footer_content_new' ); // Footer content
    }

    Regards,
    Mahesh

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Change Footer text’ is closed to new replies.