Skip to content

Enable WooCommerceProduct Gallery Arrows

Important

These are now enabled by default and there is an option under Customize > WooCoomerce (Total) > Single Product Gallery where you can toggle the arrows on or off.

add_filter( 'woocommerce_single_product_carousel_options', function( $options ) {
	$options['directionNav'] = true;
	return $options;
} );
All PHP snippets should be added via child theme's functions.php file or via a plugin.
We recommend Code Snippets (100% Free) or WPCode (sponsored)
Related Snippets
Back To Top