Created
June 27, 2019 15:26
-
-
Save yousufansa/9484928b5d7790ab1ce1956e504caa54 to your computer and use it in GitHub Desktop.
Electro - Single Product Gallery Navigation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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