From 3979fad06876330db11f55c492057b6a51abef8a Mon Sep 17 00:00:00 2001 From: Laury GvR Date: Wed, 14 Feb 2018 16:56:29 -0500 Subject: [PATCH] Setting the slideshow animation to fade Current ad slider animation is set to slide from right to left. This setting hopefully changes that to fading. --- functions.php | 1 + 1 file changed, 1 insertion(+) diff --git a/functions.php b/functions.php index 5d90a24..c6f0a5c 100644 --- a/functions.php +++ b/functions.php @@ -333,6 +333,7 @@ require get_template_directory() . '/inc/royalslider.php'; function restore_slider_behavior( $settings ) { $settings['infinite'] = 'true'; + $settings['animation'] = "'fade'"; return $settings; } add_filter( 'advanced-ads-slider-settings', 'restore_slider_behavior' ); -- 2.17.1