We're merging with GenerateBlocks! Learn more here.

[Support request] Add arrow to Carousel and hide dots

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

Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #10712
    Hilton
    Participant

    Hi,

    Is there a way to add before and after arrows to carousel, and hide bottom dots.

    Thanks

    #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;
    }
    #10723
    Hilton
    Participant

    Hi,

    The dots are hidden now, but the arrows are not there. Can you check please?

    #10749
    Tom
    Keymaster

    Is there a URL I can check out?

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.