Dear All
I’m using v2.1.2 with WP 3.5.1 and had the “has_cap” and the “use_custom” issue.
I fixed the “has_cap” issue with the fix of Martin Young and the “use_custom” as follows:
replace on line 228:
<?php if($this->use_custom || !empty($this->options['custom_css'])){ ?>
with:
<?php if((isset($this->use_custom) && $this->use_custom) || !empty($this->options['custom_css'])){ ?>
best – p