We're merging with GenerateBlocks! Learn more here.

[Support request] Carousel _ how to hide dots & show arrows

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

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #10354
    Frédéric
    Participant

    Hi

    I have a carousel made with wp-show-post plugin and works great but I would like to change navigation dots against arrows. Is it possible? Any ideas?

    regards,

    Frederic

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

    #10378
    Frédéric
    Participant

    hi
    I tried to add the function but doesn’t work, probably I made a mistake … (?)

    (btw, added this code via snippets)

    here the like of the page :

    https://dev-lesmotsduvent.pantheonsite.io/les-spectacles-_-sophie-wilhelm/

    #10384
    Tom
    Keymaster

    Try adding this CSS:

    .slick-next:before, 
    .slick-prev:before {
        color: #000;
    }
    #10430
    Mike Chen
    Participant

    Where do you add the code in functions

    #10431
    Mike Chen
    Participant

    I Used Code Snippets Plugin but doesn’t seem to work

    #10442
    Tom
    Keymaster

    Did you add the CSS as well?

    #10445
    Mike Chen
    Participant

    yeah its not working

    #10457
    Tom
    Keymaster

    Can you link me to the page?

    #10711
    Hilton
    Participant

    Hi,

    It didn’t work for me too. Can you update the function please?

    Thanks

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