Thanks @redwancou!
It’s OK to post 1 or 2 stars when the plugin does not do what you used it for. But for issues like this (with any other plugin) try to post first in the support forums, there are awesome devs out there who are eager to help people.
Regarding the code, this allows you to tell the plugin about the new config file location.
In your case, you can use this code in your theme’s functions.php (add it at the end of the functions.php file of your theme/child theme)
PLEASE: Take a backup of your website files and database before modifying any PHP files.
function salt_shaker_new_file($salts_file_name) {
$salts_file_name = '../wpsecret/wp-config';
return $salts_file_name;
}
add_filter('salt_shaker_salts_file', 'salt_shaker_new_file');
Hope that helps!
-
This reply was modified 3 years, 5 months ago by Nagdy.
-
This reply was modified 3 years, 5 months ago by Nagdy.