How to remove footer credits?

This topic contains 9 replies, has 2 voices, and was last updated by  Kor 7 years, 2 months ago.

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
  • Author
    Posts
  • #367601

    Gautam Kukreja
    Buyer
    Post count: 114

    Earlier I was using a plugin to remove them but now that plugin is not working! Please help!
    Also I cannot find them in the editor.
    It would be great if I could remove them once and for all

    #367629

    Kor
    Moderator
    Post count: 16516
    #367662

    Gautam Kukreja
    Buyer
    Post count: 114

    Where exactly should I add the following snippet-

    
    
    function dt_remove_default_footer() {
        remove_action( 'dt_footer_copyright', 'dt_footer_copyright_default', 10 );
        add_action( 'dt_footer_copyright', 'custom_dt_footer_copyright_text', 10 );
    }
    add_action('init', 'dt_remove_default_footer');
    
    function custom_dt_footer_copyright_text(){
        echo 'My copyright text';
    }

    I added it at the end of footer.php and it hid my entire footer.
    Please help!

    #367671

    Kor
    Moderator
    Post count: 16516

    Hi Gautam,

    Insert this code into the “Code Snippet” plugin https://wordpress.org/plugins/code-snippets/ . If you need help, please share WP temp admin access to your site so we can take a better look. You can post the details here using the private reply option below.

    Thanks!

    #367678

    Gautam Kukreja
    Buyer
    Post count: 114
    This reply has been marked as private.
    #367681

    Kor
    Moderator
    Post count: 16516

    Hi Gautam,

    Sorry, I misunderstand your question. I thought you wanted to customize the footer credit. I’ve just applied this custom CSS code below to remove only the footer credits. I’ve inserted it into GD > Design > Scripts > Custom Style CSS . Could you please check and see if it’s what you’re looking for?

    
    
    p.copyright-text {
        display:none!important;
    }
    #367683

    Gautam Kukreja
    Buyer
    Post count: 114
    This reply has been marked as private.
    #367684

    Kor
    Moderator
    Post count: 16516

    Done. Could you please check?

    Thanks!

    #367685

    Gautam Kukreja
    Buyer
    Post count: 114

    You Rock Kor!! 🙂

    #367686

    Kor
    Moderator
    Post count: 16516

    Glad that worked. Let us know if you need anything else.

    Thanks!

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

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket