• Does anyone know if the instructions for altering/adding the footer copyright and powered by text provided by press customizr at this link are no longer valid?

    Altering/Adding Footer Credits

    My reason for asking is because I followed the instructions on that page and the original credits still remain.

    I downloaded the child theme they provide and copied this code to the child theme functions.php file:

    add_filter('tc_credits_display', 'my_custom_credits', 20);
    function my_custom_credits(){ 
    $credits = 'MyWebsiteName';
    $newline_credits = 'MyWebsiteName';
    return '
    <div class="span6 credits">
        		    	<p> &middot; &copy; '.esc_attr( date( 'Y' ) ).' <a href="'.esc_url( home_url() ).'" title="'.esc_attr(get_bloginfo()).'" rel="bookmark">'.esc_attr(get_bloginfo()).'</a> &middot; '.($credits ? $credits : 'Designed by <a href="http://www.presscustomizr.com/">Press Customizr</a>').' &middot;'.($newline_credits ? '<br />&middot; '.$newline_credits.' &middot;' : '').'</p>		</div>';
    }

    One thing I’m wondering is if I was supposed to include any additional PHP code. I just copied the code as provided, assuming that if some other php code was required they would have included it.

Viewing 11 replies - 1 through 11 (of 11 total)
  • Hi,

    That snippet is working properly.
    You have to physically remove the presscustomizer.com link within the snippet.

    Thank you.

    Hi all

    I used the snippet and replaced “http://www-dot-presscustomizr.com/”and “Press Customizr” but the presscustomizer url us still being called from somewhere when you click through.

    Seems to be calling czr-designer-link` but I can’t find that function.

    Any ideas?

    Hello,

    Just figured this out- FINALLY.

    So in order to change the footer credits in the Customizr theme (using a child-theme) you want to create the follow folder path:

    templates > parts > footer

    :then you want to create a file called ‘footer_credits.php’ ; This allow you to set the footer credits and override the customizr core.

    (The trick to make it all happen…) Once you create the folders and make your adjustments from the copied file you want to make sure that you have initialized the Customizr theme- then revert back to your child theme. Everything should still be in it’s same place and the footer will be changed for you.

    Hope this helps.

    Thread Starter videosc

    (@videosc)

    Sorry for being so late in responding but I just wanted to mention that the solution provided by Denzel worked for me. Not sure why Mello had the problem and you may not need to do the solution by Droopie either. Just install the child theme and add this code in your functions.php file. Should work fine, at least it did for me. Thanks Denzel!

    <?php
    add_filter('tc_credits_display', 'my_custom_credits', 20);
    function my_custom_credits(){ 
    $credits = 'Add any text here you want to appear next to the copyright info';
    $newline_credits = 'Add any text here that you want to appear under the copyright line';
    return '
    <div class="span6 credits">
        		    	<p> &middot; Copyright &copy; '.esc_attr( date( 'Y' ) ).' <a href="'.esc_url( home_url() ).'" title="'.esc_attr(get_bloginfo()).'" rel="bookmark">'.esc_attr(get_bloginfo()).'</a> &middot; '.($credits ? $credits : '').' '.($newline_credits ? '<br />&middot; '.$newline_credits.' &middot;' : '').'</p>		</div>';
    }
    • This reply was modified 6 years, 3 months ago by videosc.

    I think it has to do with which style you are using. Classic or Modern.

    This code works for me for the Classic version, but not for the Modern.

    Still looking for how to change footer credits for the Modern style.

    Cheers

    gracewitter

    (@gracewitter)

    Just want to say thank you Droopie for this solution!! this issue was driving me crazy

    thecrowblair

    (@thecrowblair)

    Hi!

    Like @gracewitter, this issue almost makes me crazy!

    The method add_filter, did not worked for me anyaway.

    Then, I found another solution, because I wanted modify, but not remove all credits.

    1. Using the same philosophy of child themes, create folders:

    customizr-child\templates
    customizr-child\templates\parts
    customizr-child\templates\parts\footer

    2. Copy footer_credits.php, from parent cusomizr theme, to footer child folder. (customizr-child\templates\parts\footer)

    3. Edit the child footer_credits.php as you wants.

    4. Don’t forget activate your child theme.

    I hope that this solution help others users.

    Regards,
    Alex.

    Just updated my theme and the the new location for the footer copyright is located at customizr/inc/czr-front-ccat.php

    🙂

    Anonymous User 13882600

    (@anonymized-13882600)

    yeah but how to do it in modern style?

    Hi @boyansharic, my post was made for modern style.

    • This reply was modified 5 years, 11 months ago by thecrowblair.
    Anonymous User 13882600

    (@anonymized-13882600)

    @thecrowblair
    THANK YOU!!!

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Altering, adding, changing, removing footer credits’ is closed to new replies.