700, 'thumbnail_image_width' => 360, 'product_grid' => array( 'default_columns' => 3, 'default_rows' => 4, 'min_columns' => 1, 'max_columns' => 6, 'min_rows' => 1 ) ) ) ); 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', 'dyad_2_woocommerce_setup' ); /** * WooCommerce specific scripts & stylesheets. * * @return void */ function dyad_2_woocommerce_scripts() { wp_enqueue_style( 'dyad-2-woocommerce-style', get_template_directory_uri() . '/woocommerce.css', array(), time() ); wp_style_add_data( 'dyad-2-woocommerce-style', 'rtl', get_stylesheet_directory_uri() . '/woocommerce-rtl.css' ); $font_path = WC()->plugin_url() . '/assets/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( 'dyad-2-woocommerce-style', $inline_font ); } add_action( 'wp_enqueue_scripts', 'dyad_2_woocommerce_scripts' ); /** * Define image sizes * * @link https://docs.woocommerce.com/document/set-woocommerce-image-dimensions-upon-theme-activation/ * * @return void */ function dyad_2_woocommerce_image_dimensions() { global $pagenow; if ( ! isset( $_GET['activated'] ) || $pagenow != 'themes.php' ) { return; } $catalog = array( 'width' => '360', 'height' => '360', 'crop' => 1, ); $single = array( 'width' => '720', 'height' => '720', 'crop' => 1, ); $thumbnail = array( 'width' => '240', 'height' => '240', 'crop' => 0, ); update_option( 'shop_catalog_image_size', $catalog ); update_option( 'shop_single_image_size', $single ); update_option( 'shop_thumbnail_image_size', $thumbnail ); } add_action( 'after_switch_theme', 'dyad_2_woocommerce_image_dimensions', 1 ); /** * Disable the default WooCommerce stylesheet. * * Removing the default WooCommerce stylesheet and enqueing your own will * protect you during WooCommerce core updates. * * @link https://docs.woocommerce.com/document/disable-the-default-stylesheet/ */ add_filter( 'woocommerce_enqueue_styles', '__return_empty_array' ); /** * Add 'woocommerce-active' class to the body tag. * * @param array $classes CSS classes applied to the body tag. * @return array $classes modified to include 'woocommerce-active' class. */ function dyad_2_woocommerce_active_body_class( $classes ) { $classes[] = 'woocommerce-active'; return $classes; } add_filter( 'body_class', 'dyad_2_woocommerce_active_body_class' ); /** * Products per page. * * @return integer number of products. */ function dyad_2_woocommerce_products_per_page() { return 12; } // Legacy WooCommerce products per page filter. if ( defined( 'WC_VERSION' ) && version_compare( WC_VERSION, '3.3', '<' ) ) { add_filter( 'loop_shop_per_page', 'dyad_2_woocommerce_products_per_page' ); } /** * Product gallery thumnbail columns. * * @return integer number of columns. */ function dyad_2_woocommerce_thumbnail_columns() { return 6; } add_filter( 'woocommerce_product_thumbnails_columns', 'dyad_2_woocommerce_thumbnail_columns' ); /** * Default loop columns on product archives. * * @return integer products per row. */ function dyad_2_woocommerce_loop_columns() { return 3; } // Legacy WooCommerce columns filter. if ( defined( 'WC_VERSION' ) && version_compare( WC_VERSION, '3.3', '<' ) ) { add_filter( 'loop_shop_columns', 'dyad_2_woocommerce_loop_columns' ); } /** * Related Products Args. * * @param array $args related products args. * @return array $args related products args. */ function dyad_2_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', 'dyad_2_woocommerce_related_products_args' ); /** * Cross Sell total */ function dyad_2_woocommerce_cross_sell_total( $columns ) { return 2; } add_filter( 'woocommerce_cross_sells_total', 'dyad_2_woocommerce_cross_sell_total' ); if ( ! function_exists( 'dyad_2_woocommerce_product_columns_wrapper' ) ) { /** * Product columns wrapper. * * @return void */ function dyad_2_woocommerce_product_columns_wrapper() { $columns = dyad_2_loop_columns(); echo '