• PHP Warning: Undefined array key “eihe_align” in /home/website/public_html/wp-content/plugins/image-hover-effects-addon-for-elementor/includes/widgets.php on line 489

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter raptor_00

    (@raptor_00)

    I had to uninstall it, nobody answers here.

    Solved by modifying the file /includes/widget.php, line 487, from this:

    <?php } $this->add_render_attribute('eihe_box', ['class' => ['eihe-box', esc_attr($settings['eihe_effect']), 'eihe_' . esc_attr($settings['eihe_align'])]]); ?>

    To this:

    <?php } $this->add_render_attribute('eihe_box', [ 'class' => [ 'eihe-box', esc_attr($settings['eihe_effect']), 'eihe_' . esc_attr(isset($settings['eihe_align']) ? $settings['eihe_align'] : 'default_value') // Use a fallback value ] ]); ?>

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘PHP Warning: Undefined array key “eihe_align”’ is closed to new replies.