• I am using a child theme to change colours & styling and downloaded the child theme from your website to get me started.

    I notice at the footer of the theme it says;

    Catch Adaptive Child Theme by Catch Themes

    I do not wish to pay for a premium version to edit the footer, however I also want to credit to catch themes on the footer.

    I am wanting to edit this to;

    Catch Adaptive by Catch Themes

    I’m guessing it is something to do with the parent theme file inc/catchadaptive-core.php on the line as follows.

    <div id="footer-right-content" class="powered">' . $catchadaptive_content['right'] . '</div>

    Can you please tell me how to edit this, but please understand I do not want to pay for premium but I want to credit the authors.

    Kind Regards

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello,

    Removing the theme’s default footer text is not available in free themes.
    But you could use this function in your child theme’s function.php to unhook the whole footer text:

    function unhook_catchadaptive_functions() {
    remove_action( 'clean_journal_footer','catchadaptive_get_footer_content',110);
    }
    add_action( 'init', 'unhook_catchadaptive_functions' );

    but if you only want to edit the footer text and remove the theme author’s default credits, you will have to upgrade to pro, you can see all the features of the PRO version here
    Regards,Bplv

    Sorry ,
    I got a little bit confused and made a mistake in the function,

    The code should go like this:

    function unhook_catchadaptive_functions() {
    remove_action( 'catchadaptive_footer','catchadaptive_get_footer_content',110);
    }
    add_action( 'init', 'unhook_catchadaptive_functions' );

    sorry for the mistake
    hope you’ll understand,
    bplv

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Editing footer in child theme.’ is closed to new replies.