Can I change the path of the Full Content Config folder?

If you have any problems when moving the folder and files or nonstandard permissions in your directories, you can manually create a folder wherever you want and then add a WordPress filter in your functions.php file pointing to your custom folder, as shown below:

add_filter( ‘wpematico_fullcontent_folder’,  ‘wpematico_configfiles_folder’,20,1 );
function wpematico_configfiles_folder($customconfigdir) {

$mynewdir = ‘INPUT HERE THE FULL PATH’;
// ie: /home/user/htdocs/wp-content/uploads/myfolder/config/custom/

if( !is_dir( $mynewdir ) ) return $customconfigdir;

return $mynewdir;

}