Remove "Thank you message at bttom of Page"

This topic contains 6 replies, has 3 voices, and was last updated by  Hui Ling Tan 4 years, 7 months ago.

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

Open Support Ticket
  • Author
    Posts
  • #512787

    Hui Ling Tan
    Expired Member
    Post count: 349

    Hi,

    How can I remove that line at the bottom of the Editing Listing Page?

    I tried #wpfooter p {
    display: none!important;
    }

    and it would work but once I refreshed the page the Thank You message appears again.

    I also tried the snippet from https://wpgeodirectory.com/support/topic/how-to-remove-footer-credits/

    but it didn’t work either.

    Thanks!

    #512792

    Kor
    Moderator
    Post count: 16516

    Hi Hui Ling Tan,

    Thanks for your post. Could you share your Website WP admin access here along with a link to the edit listing page so that I could check on it? Also, I need to consult a developer and see if you’re allowed to remove the credits.

    #512820

    Hui Ling Tan
    Expired Member
    Post count: 349
    This reply has been marked as private.
    #512886

    Alex Rollin
    Moderator
    Post count: 27815

    Hello,

    you will need to create your own customization to hide the credits on the backend.

    #513061

    Hui Ling Tan
    Expired Member
    Post count: 349

    Hi Alex,

    As mentioned above, I’ve tried using CSS to hide it but it doesn’t work unlike the usual content. It seems to require higher-level of coding to do that but I believe this should be a basic feature of users who have paid for the plugin?

    #513096

    Kor
    Moderator
    Post count: 16516

    Hi Hui Ling tan,

    Thanks for your reply. You can insert the custom PHP code below into the “Code Snippets” plugin to remove it.

    add_action('admin_head', 'my_custom_fonts'); // admin_head is a hook my_custom_fonts is a function we are adding it to the hook
    
    function my_custom_fonts() {
      echo '<style>
        div#wpfooter {
        display: none;
    }
      </style>';
    }
    #513154

    Hui Ling Tan
    Expired Member
    Post count: 349

    Thanks Kor. I’ve managed to activate the code. Really appreciate your help!!

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

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

Open Support Ticket