Home › Forums › Pro Support › Carousel _ how to hide dots & show arrows › Reply To: Carousel _ how to hide dots & show arrows
July 17, 2019 at 4:24 pm
#10358
Keymaster
Hi there,
You can enable them with this function:
add_filter( 'wpsp_carousel_args', function( $args ) {
$args['arrows'] = true;
return $args;
} );
It will still require some CSS, though. Feel free to link me to your site once the above is active and I’ll help style it 🙂