• Resolved Project Cylo

    (@josherons)


    hello WP fam,haven read virtually all the reviews on how to edit the footer section of the customize theme from #Electric_feet,#rdellconsulting and many others. I still don’t know how to edit the copyright section to my the URL and write up I prefer,can’t also find the part/class/footer.php *oopss,hope i got this file path correctly*. Using the recently updated customizr theme.3.1.23 all I can see is (footer.php).Can someone please help me out.#Urgent,#New_bie——Loving the endless possibilities of WP….thanks a lot

Viewing 15 replies - 1 through 15 (of 18 total)
  • OK, well you don’t need to hack core files. You need to use a Child Theme.

    You’ll then add php code from the Snippets to the functions.php file. This is the snippet you need.

    And upgrade to 3.1.24 before you start.

    Thread Starter Project Cylo

    (@josherons)

    Sorry that was a mistake, an using the updated version already, customizr 3.1.24. Shhhhhh,getting scared of that child theme section. Does it require to be a real time code?,cos I have been lazy about this aspect. Just recently working my thought process in being consistent with the geek dream??….Thanks, anticipating your reply Sir?

    It seems daunting at first, but believe me it is very simple when you’ve tried it. By far the best way to go.

    Not sure what you mean by real time code, but yes, WP reads the functions.php code and makes adjustments to the core code before it renders the page. That’s the whole beauty of WP – it is very customisable.

    Thread Starter Project Cylo

    (@josherons)

    Afternoon by my time Sir,I did a copy paste of the following code into themes function subsect functions.php.

    add_filter(‘tc_credits_display’, ‘my_custom_credits’);
    function my_custom_credits(){
    $credits = ‘Powered by Softcomimagio Ltd’;
    $newline_credits = ”;
    return ‘
    <div class=”span4 credits”>
    <p> · © ‘.esc_attr( date( ‘Y’ ) ).’ ‘.esc_attr(get_bloginfo()).’ · ‘.($credits ? $credits : ‘Designed by ; Ltd‘).’ ·’.($newline_credits ? ‘
    · ‘.$newline_credits.’ ·’ : ”).'</p> </div>’;
    }
    Nothing worked!????,sad face. Kindly school me on this Sir….thanks,regards.

    Thread Starter Project Cylo

    (@josherons)

    Afternoon by my time Sir,I did a copy paste of the following code into themes function subsect functions.php.

    add_filter(‘tc_credits_display’, ‘my_custom_credits’);
    function my_custom_credits(){
    $credits = ‘Powered by Softcomimagio Ltd’;
    $newline_credits = ”;
    return ‘
    <div class=”span4 credits”>
    <p> · ? ‘.esc_attr( date( ‘Y’ ) ).’ ‘.esc_attr(get_bloginfo()).’ · ‘.($credits ? $credits : ‘Powered by Softcomimagio.com ; Ltd’).’ ·’.($newline_credits ? ‘
    · ‘.$newline_credits.’ ·’ : ”).'</p> </div>’;
    }
    Nothing worked!????,sad face. Kindly school me on this Sir….thanks,regards.

    Thread Starter Project Cylo

    (@josherons)

    Hope Sir_rdConsulting replies??

    I’ve applied your code above to my test site, and it gives the following footer:

    (Social Icons) · ? 2014 Customizr Test · Powered by Softcomimagio Ltd · Back to top

    However, you do have an unwanted [CR] in the middle so copy & paste exactly:

    add_filter('tc_credits_display', 'my_custom_credits');
    function my_custom_credits(){
    $credits = 'Powered by Softcomimagio Ltd';
    $newline_credits = '';
    return '
    <div class="span4 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="https://www.themesandco.com/">Themes & Co</a>').' &middot;'.($newline_credits ? '<br />&middot; '.$newline_credits.' &middot;' : '').'</p>      </div>';
    }

    If that doesn’t work, need a link to your site so I can Firebug it

    Thread Starter Project Cylo

    (@josherons)

    Thread Starter Project Cylo

    (@josherons)

    ??,www.Utlebe.com,inserted the codes into the functions.php file using the customizr child theme.Still the same,will be the happiest #rookie should the fire bugging work and should you school me for futureristic occurrence Sir…Thanks for your relentless effort,*the world will be a better place,if we had more people like you*…..????????????

    OK, I’m not yet convinced you have your Child Theme set up correctly. I can see a folder themes/customizr-child (good)

    There should be (at least) 2 files in that folder
    – style.css (can’t see it showing any code)
    – functions.php

    Check that, then if they are there you’ll need to post the content of the 2 files. To do that, you need to post to https://www.pastebin.com for each file and come back with 2 different links that will look something like:
    https://pastebin.com/7dMPEp2f

    Thread Starter Project Cylo

    (@josherons)

    Thanks for your immerse effort Sir, sequel to noticing the folder/files in my child theme. Here is what is written in the footer.php file:

    <?php
    /**
    * This is where you can copy and paste your functions !
    */

    And in the styles. CSS

    /*
    Theme Name: Customizr Child
    Theme URI: https://themesandco.com/customizr
    Description: A child theme for the Customizr WordPress theme. This child theme simply includes 2 files : style.css to add your custom css and functions.php where you can extend Customizr’s core code. In order to keep your code as clean and flexible as possible, try to use Customizr’s hooks API for your customizations. Do something awesome and have fun !
    Author: Nicolas Guillaume (nikeo)
    Author URI: https://themesandco.com
    Template: customizr
    Version: 1.0.0
    */

    /* Your awesome customizations start right here !
    ————————————————————– */

    With your help and advice Sir,how do I go free here?

    Those contents are the basic templates. You now need to add the code I gave you above (shaded) by cut & paste exactly into the bottom of the functions.php

    Thread Starter Project Cylo

    (@josherons)

    Good morning Sir, am the happiest #Newbie on the block, used the following code above as previously schooled on into the function.php beneath it…Ooooppppss been doing it in between the php write_up…re-adjusted everything to sooth what I preferably needed…#Epic,#Appreciative…Thanks Sir, God bless yah…Made this newbie excited.shhhhhh

    Well done, and you’re into moving from Newbie to Newbie++ ??

Viewing 15 replies - 1 through 15 (of 18 total)
  • The topic ‘footer settings’ is closed to new replies.