ACF Loop Ad Top and Advanced Search plugin
Hello!
We are find compability issue with Advanced Search plugin:
If you set some fields to display in Top or Bottom of the Loop, this not works in Advanced Search results Loop.
In order to fix it, do the following:
Open ACFCP file
/wp-content/plugins/advanced-custom-fields-for-ClassiPress/includes/acf-content.php and find function
acf_get_loop_fields()
first what you will see in this function is condition:
PHP Code:
if ( !is_archive() && !is_search() )
return false;
Improve it:
PHP Code:
if ( !is_archive() && !is_search() && !isset($_GET['search']) )
return false;
So it would works!
NOTICE: It is individual MOD (only for Advanced Search plugin compability) and it will not implemented in ACFCP plugin package!
Good Luck!