Do I need a Cookie consent on a basic WordPress site?

IMHO, If your site stores cookies on the visitor’s local computer, or if it captures any personal information (newsletter signup, contact forms that ask for name/email), or if the hosting place captures requests in a log, then you need GDPR compliance. Of if you use any analytics information, as in Google Analytics You can look … Read more

I am unable to login into my wp-admin

You can fix this by changes site_url and home_url in your database. If you have access to your database(phpmyadmin) go to options table and change site_url and home_url from HTTPS to HTTP. You can also change it through wp-config file. define(‘WP_HOME’,’http://www.example.com’); define(‘WP_SITEURL’,’http://www.example.com’); See: https://codex.wordpress.org/Changing_The_Site_URL for possible methods. Hope this helps.

How to control who can view certain pages in BuddyPress? [closed]

I am new to BuddyPress so I don’t know which functions and variables to use here. Read the codex – for example: http://codex.buddypress.org/developer-docs/the-bp-global/ You could create a function in your theme- functions.php or in bp-custom.php and call it from template files and pass it parameters like allowed_users, etc. Or you code hard-code something like this … Read more

Stop Plugin Enumeration [closed]

There is no need to stop “plugin enumeration”, just use plugins from a good home and make sure you have restrictive file permission setting on your server. In theory you can use htaccess to mask the original location of the plugin on the disk and write some code to serve any JS and CSS file … Read more