We're merging with GenerateBlocks! Learn more here.

Support Forum

Please login to receive premium support.

Support for the free plugin can be found here.

Home Forums Pro Support Carousel _ how to hide dots & show arrows Reply To: Carousel _ how to hide dots & show arrows

#10358
Tom
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 🙂