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 WPSP Pro 1.0 Beta Testing Reply To: WPSP Pro 1.0 Beta Testing

#8897
Tom
Keymaster

Hmm, it should work in Code Snippets.

Can you try this?:

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

        return $args;
    } );
} );