I have trouble changing default values for the image show animation.
I change settings in the widget configuration (eg: autoanimation: off ; animation interval: 99999), but it keeps generating the same html code with default values (off and 5000 in that case).
I mainly wanted to set autoanimation to off, so I hacked the widgets.imageshow.php (line 75) from:
- Code: Select all
$autoanim = empty($instance['autoanim']) ? 'on' : $instance['autoanim'];
to:
- Code: Select all
$autoanim = empty($instance['autoanim']) ? 'off' : $instance['autoanim'];
Has someone found how to fix this?
Regards,
Thomas.
