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 force_woocommerce_single_variation_images( $size ) { | |
return 'woocommerce_single'; | |
} | |
add_filter( 'woocommerce_gallery_image_size', 'force_woocommerce_single_variation_images' ); |
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
Enfold: 100% * | |
Alder: 50% | |
Astra: 50% * | |
Avada: 30% | |
BeTheme: 100% * | |
Bulk: 50% | |
BulkHSop: 50% | |
Divi: 50% * | |
Di Blog: 50% | |
Flatsome: 100% * |
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
Version 1.0.12 ( 05/07/2018 ) | |
Product catelog mode style | |
Single product attribute sizeing | |
Hide out of stock variation product | |
Item styling | |
Version 1.0.11 ( 03/06/2018 ) |
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
https://www.majemedia.com/2015/01/woocommerce-how-to-show-empty-categories/ |
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
https://www.majemedia.com/2015/01/woocommerce-how-to-show-empty-categories/ |
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
* Bypass logout confirmation. | |
*/ | |
function iconic_bypass_logout_confirmation() { | |
global $wp; | |
if ( isset( $wp->query_vars['customer-logout'] ) ) { | |
wp_redirect( str_replace( '&', '&', wp_logout_url( wc_get_page_permalink( 'disconnected' ) ) ) ); | |
exit; | |
} | |
} |
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
<?php | |
function custom_woocommerce_tag_cloud_widget() { | |
$args = array( | |
'number' => 15, | |
'taxonomy' => 'product_tag' | |
); | |
return $args; | |
} | |
add_filter( 'woocommerce_product_tag_cloud_widget_args', 'custom_woocommerce_tag_cloud_widget' ); |
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
.woo-variation-swatches-theme-ux-shop .variations .select2-container { | |
display:none; | |
} |
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
/* | |
Theme Name: Flatsome Child | |
Description: This is a child theme for Flatsome Theme | |
Author: UX Themes | |
Template: flatsome | |
Version: 3.0 | |
*/ | |
/*************** ADD CUSTOM CSS HERE. ***************/ | |
#map_go {width:100%!important;} |