skip to Main Content

Enable Keyboard Navigation for the Image Slider Element

add_filter( 'vcex_image_flexslider_data_attributes', function ( $data_attrs, $atts ) {
	$data_attrs[] = 'data-keyboard="true"';
	return $data_attrs;
}, 10, 2 );
All PHP snippets should be added via child theme's functions.php file or via a plugin (we recommend Code Snippets)
Back To Top