Notice: Undefined property: EasyColumns::$use_custom
-
Getting a PHP Notice:
Notice: Undefined property: EasyColumns::$use_custom in easy-columns.php on line 228
Fix by changing:
<?php if($this->use_custom || !empty($this->options['custom_css'])){ ?>
To:
<?php if( (isset($this->use_custom) && $this->use_custom) || !empty($this->options['custom_css'])){ ?>
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Notice: Undefined property: EasyColumns::$use_custom’ is closed to new replies.