Add text on footer under "Power by" (no intention to remove it)

  • Author
    Posts
  • #61923

    Hello,
    I’d like to add info about the designer of the website on the footer, just under your Credit link “Powered by Fluida etc. ”
    Please, take note that I do NOT intend in any way to remove your Credit link, I just want to add a “Designed by” close to/under it, also because the left side of the footer is occupied by client’s infos (address, phone and stuff), so this feels like the best placement.
    I found where that credit is located, but I just can’t add text on it.
    I’ll be grateful for any kind of help.

    Cheers,
    Jasmine

    #62128
    Zed
    Cryout Creations mastermind
    add_action( 'cryout_master_footer_hook', 'child_custom_footer_text', 11 );
    function child_custom_footer_text() {
        ?>
            <div class="custom-footer-text">
                 Enter your custom credit text here. You may need to style the .custom-footer-text {} container to make it appear correctly aligned on the right side.    
            </div>
        <?php
    }

    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #62755

    Thanks Zed, I need some more help, I’m new to php.
    I tried to copy the code you gave me but my text doesn’t appear on the footer. Can you confirm that the file where I need to add this is core.php or is it another one? And also, do I just need to copy this or do I have to recall it also somewhere else?
    Thanks again,
    J

    #63323
    Zed
    Cryout Creations mastermind

    You’d need to add that in your child theme’s functions.php file (it is a bad idea to make customizations to the theme’s code in any other way but a child theme).


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    #63826

    I did it!
    I’m already using a child-theme, but still thanks for the suggestion.

    Thanks a lot for your help Zed!!

Viewing 5 posts - 1 through 5 (of 5 total)

The topic ‘Add text on footer under "Power by" (no intention to remove it)’ is closed to new replies.