Some hints for customizing often used modules for use with Minify:
a) colorbox:
Remove
head.js(URL+"/modules/colorbox/js/jquery.colorbox-min.js")
loadcss(URL+"/modules/colorbox/"+design+"/colorbox.css");
from frontend.js, Ln. 41ff
 
b) wunderblock:
Remove
< script type="text/javascript" src="'.WB_URL.'/modules/'.$mod_dir.'/aos/aos.js" >< /script >
from view.php, Ln. 20f. (the other echo-output needs to stay there)
 
c) cookie message
Remove
< link rel="stylesheet" type="text/css" href="/cookieconsent.min.css"  />
< script src="/cookieconsent.min.js" >< /script >
in Backend > Admintools > Cookie Message
 
=> In the template, add the following php code:
 
$css[] = "css/responsee.css"; /* EXAMPLE: the template stylesheet */
$css[]  = WB_PATH."/modules/wunderblock/aos/aos.css";
$css[]  = WB_PATH."/modules/cookie_message/cookieconsent.min.css";
$css[]  = WB_PATH."/modules/colorbox/1/colorbox.css";
$js[]  = "js/jquery-1.8.3.min.js";
$js[]  = "js/jquery-ui.min.js";
$js[]  = "js/responsee.js"; /* EXAMPLE: the template javascript file */
$js[]  = WB_PATH."/modules/cookie_message/cookieconsent.min.js";
$js[]  = WB_PATH."/modules/colorbox/js/jquery.colorbox-min.js";
$js[]  = WB_PATH."/modules/wunderblock/aos/aos.js";
 
minify_css();
minify_js();