150,
'single_image_width' => 300,
'product_grid' => array(
'default_rows' => 3,
'min_rows' => 1,
'default_columns' => 4,
'min_columns' => 1,
'max_columns' => 6,
),
)
);
add_theme_support( 'wc-product-gallery-zoom' );
add_theme_support( 'wc-product-gallery-lightbox' );
add_theme_support( 'wc-product-gallery-slider' );
}
add_action( 'after_setup_theme', 'aster_vlogger_woocommerce_setup' );
function aster_vlogger_woocommerce_scripts() {
wp_enqueue_style( 'aster-vlogger-woocommerce-style', get_template_directory_uri() . '/resource/css/woocommerce.css', array(), ASTER_VLOGGER_VERSION );
$font_path = WC()->plugin_url() . '/resource/fonts/';
$inline_font = '@font-face {
font-family: "star";
src: url("' . $font_path . 'star.eot");
src: url("' . $font_path . 'star.eot?#iefix") format("embedded-opentype"),
url("' . $font_path . 'star.woff") format("woff"),
url("' . $font_path . 'star.ttf") format("truetype"),
url("' . $font_path . 'star.svg#star") format("svg");
font-weight: normal;
font-style: normal;
}';
wp_add_inline_style( 'aster-vlogger-woocommerce-style', $inline_font );
}
add_action( 'wp_enqueue_scripts', 'aster_vlogger_woocommerce_scripts' );
add_filter( 'woocommerce_enqueue_styles', '__return_empty_array' );
function aster_vlogger_woocommerce_active_body_class( $classes ) {
$classes[] = 'woocommerce-active';
return $classes;
}
add_filter( 'body_class', 'aster_vlogger_woocommerce_active_body_class' );
function aster_vlogger_woocommerce_related_products_args( $args ) {
$defaults = array(
'posts_per_page' => 3,
'columns' => 3,
);
$args = wp_parse_args( $defaults, $args );
return $args;
}
add_filter( 'woocommerce_output_related_products_args', 'aster_vlogger_woocommerce_related_products_args' );
/**
* Remove default WooCommerce wrapper.
*/
remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 );
remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 );
if ( ! function_exists( 'aster_vlogger_woocommerce_wrapper_before' ) ) {
function aster_vlogger_woocommerce_wrapper_before() {
?>
cart->get_cart_contents_count(), 'aster-vlogger' ),
WC()->cart->get_cart_contents_count()
);
?>
cart->get_cart_subtotal() ); ?>