Skip to content

Instantly share code, notes, and snippets.

@AertHulsebos
Last active April 8, 2022 10:10
Show Gist options
  • Save AertHulsebos/95e834cce4ca6a26dba9319c4ca03efc to your computer and use it in GitHub Desktop.
Save AertHulsebos/95e834cce4ca6a26dba9319c4ca03efc to your computer and use it in GitHub Desktop.
/**
* Override cookiebanner template html
* @param string $html
*
* @return string
*/
function cmplz_custom_banner_file($path, $filename){
if ($filename === 'cookiebanner.php' ) {
error_log("change path to ".trailingslashit(WPMU_PLUGIN_DIR).'cookiebanner/cookiebanner.php');
return trailingslashit(WPMU_PLUGIN_DIR).'cookiebanner/cookiebanner.php';
}
return $path;
}
add_filter('cmplz_template_file', 'cmplz_custom_banner_file', 10, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment