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 Add arrow to Carousel and hide dots Reply To: Add arrow to Carousel and hide dots

#10722
Tom
Keymaster

Hi there,

First, add this function:

add_filter( 'wpsp_carousel_args', function( $args ) {
    $args['arrows'] = true;
    $args['dots'] = false;

    return $args;
} );

Then, add this CSS:

.slick-next:before, 
.slick-prev:before {
    color: black;
}