Guest User

Untitled

a guest
Apr 20th, 2018
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. // Update WooCommerce Flexslider options
  2. add_filter( 'woocommerce_single_product_carousel_options', 'ud_update_woo_flexslider_options' );
  3.  
  4. function ud_update_woo_flexslider_options( $options ) {
  5.  
  6. $options['directionNav'] = true;
  7.  
  8. return $options;
  9. }
Add Comment
Please, Sign In to add comment