Website Developer has gone missing! How to gain full access of your code from a WordPress website?

Assuming you have admin access, the first thing to do is to downgrade his admin user to ‘contributor’ (lowest level). If you have been sharing the admin access, create a new admin account just for you, then log in as that account, and then downgrade that admin account. And don’t create an account called ‘admin’ … Read more

WordPress file manager plugin [closed]

I solve this issue myself. I used file-un-attach plugin, which allows attach same file to more pages. This plugin uses custom find method which finds by text in title and content. If you write “” (double quotes) into search box it will find all pages in application. Result set is limited to 50 rows – … Read more

How can I remove these resize lines from the comment box?

he following CSS rule disables resizing behavior for textarea elements: textarea { resize: none; } To disable it for some (but not all) textareas, there are a couple of options. To disable a specific textarea with the name attribute set to foo (i.e., ): textarea[name=foo] { resize: none; } Or, using an id attribute (i.e., … Read more