Undefined variable
-
Variable $bg_url is undefined:
<?php if( !empty($bg_url)) : ?> background-size: <?php echo $bg_size; ?> !important; <?php endif; ?>
Should be
<?php if( !empty($bg_size)) : ?> background-size: <?php echo $bg_size; ?> !important; <?php endif; ?>
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Undefined variable’ is closed to new replies.