• Resolved sdfw7

    (@sdfw7)


    HEllo,

    I opened functions.php (/themes/tiny-framework/functions.php) and I tried all apply the directions here , but I can’t find: `

    tinyframeworkchild_remove_parent_theme_credits()` anywhere

    Is this really found in functions.php?

Viewing 3 replies - 1 through 3 (of 3 total)
  • AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hello sdfw7,

    Add below code into active child theme’s functions.php file (wp-content/themes/your-child-theme/).

    Note : Don’t modify your theme. Use child theme for any modification.


    add_filter( 'tinyframework_credits_text', 'remove_credit' );
    function remove_credit($text){

    $text = '';
    return $text;
    }

    Hope this will helps you.

    Thanks!

    Thread Starter sdfw7

    (@sdfw7)

    Great. I added that to the end of functions.php and it worked.

    I also would like to remove the log in option at bottom..any ideas how?

    Thanks in advance.

    AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hello sdfw7,

    Add below css code into your current child theme’s style.css file.


    #site-admin-link {
    display: none;
    }

    Hope this will helps you.

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Removing credits’ is closed to new replies.