Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created June 27, 2019 15:26
Show Gist options
  • Save yousufansa/9484928b5d7790ab1ce1956e504caa54 to your computer and use it in GitHub Desktop.
Save yousufansa/9484928b5d7790ab1ce1956e504caa54 to your computer and use it in GitHub Desktop.
Electro - Single Product Gallery Navigation
function el_child_wc_gallery_options( $options ) {
$options['directionNav'] = true;
return $options;
}
add_filter( 'woocommerce_single_product_carousel_options', 'el_child_wc_gallery_options', 99 );
.single-product .product-images-wrapper .flex-direction-nav>li a {
font-size: 0;
padding: 8px 15px;
}
.single-product .product-images-wrapper .flex-direction-nav>li a:before {
font: normal normal normal 14px/1 FontAwesome;
}
.single-product .product-images-wrapper .flex-direction-nav>li .flex-next:before {
content: "\f054";
}
.single-product .product-images-wrapper .flex-direction-nav>li .flex-prev:before {
content: "\f053";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment