Notices on lottie widget
-
An array notice is displayed for the lottie widget which has
loop
set as false. The issue is at the following code:if ( $settings['ekit_lottie_loop_count']['size'] ): // <--- this one right here
$this->add_render_attribute( 'wrapper', 'data-loop', ($settings['ekit_lottie_loop_count']['size'] - 1) );
else:
$this->add_render_attribute( 'wrapper', 'data-loop', $settings['ekit_lottie_loop'] );
endif;the
if
had be wrapped in anisset
:if ( isset( $settings['ekit_lottie_loop_count']['size'] ) )
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.