740, 'thumbnail_image_width' => 370, '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', 'ip_woocommerce_setup' ); /** * WooCommerce specific scripts & stylesheets. * * @return void */ function ip_woocommerce_scripts() { wp_enqueue_style( 'ip-woocommerce-style', get_template_directory_uri() . '/woocommerce.css' ); wp_style_add_data( 'ip-woocommerce-style', 'rtl', 'replace' ); $fonts_path = WC()->plugin_url() . '/assets/fonts/'; $fonts = array( 'star', 'WooCommerce' ); $inline_font = ''; foreach ( $fonts as $font ) { $inline_font .= '@font-face { font-family: "' . $font . '"; src: url("' . $fonts_path . $font . '.eot"); src: url("' . $fonts_path . $font . '.eot?#iefix") format("embedded-opentype"), url("' . $fonts_path . $font . '.woff") format("woff"), url("' . $fonts_path . $font . '.ttf") format("truetype"), url("' . $fonts_path . $font . '.svg#' . $font . '") format("svg"); font-weight: normal; font-style: normal; }'; } wp_add_inline_style( 'ip-woocommerce-style', $inline_font ); } add_action( 'wp_enqueue_scripts', 'ip_woocommerce_scripts' ); /** * 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 ip_woocommerce_active_body_class( $classes ) { $classes[] = 'woocommerce-active'; return $classes; } add_filter( 'body_class', 'ip_woocommerce_active_body_class' ); /** * Products per page. * * @return integer number of products. */ function ip_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', 'ip_woocommerce_products_per_page' ); } /** * Product gallery thumnbail columns. * * @return integer number of columns. */ function ip_woocommerce_thumbnail_columns() { return 4; } add_filter( 'woocommerce_product_thumbnails_columns', 'ip_woocommerce_thumbnail_columns' ); /** * Default loop columns on product archives. * * @return integer products per row. */ function ip_woocommerce_loop_columns() { return 3; } // Legacy WooCommerce columns filter. if ( defined( 'WC_VERSION' ) && version_compare( WC_VERSION, '3.3', '<' ) ) { add_filter( 'loop_shop_columns', 'ip_woocommerce_loop_columns' ); } /** * Related Products Args. * * @param array $args related products args. * @return array $args related products args. */ function ip_woocommerce_related_products_args( $args ) { $defaults = array( 'posts_per_page' => 4, 'columns' => 4, ); $args = wp_parse_args( $defaults, $args ); return $args; } add_filter( 'woocommerce_output_related_products_args', 'ip_woocommerce_related_products_args' ); if ( ! function_exists( 'ip_woocommerce_product_columns_wrapper' ) ) { /** * Product columns wrapper. * * @return void */ function ip_woocommerce_product_columns_wrapper() { $columns = ip_loop_columns(); echo '
'; } } add_action( 'woocommerce_before_shop_loop', 'ip_woocommerce_product_columns_wrapper', 40 ); if ( ! function_exists( 'ip_loop_columns' ) ) { /** * Default loop columns on product archives * * @return integer products per row */ function ip_loop_columns() { $columns = 3; // 3 products per row if ( function_exists( 'wc_get_default_products_per_row' ) ) { $columns = wc_get_default_products_per_row(); } return apply_filters( 'ip_loop_columns', $columns ); } } if ( ! function_exists( 'ip_woocommerce_product_columns_wrapper_close' ) ) { /** * Product columns wrapper close. * * @return void */ function ip_woocommerce_product_columns_wrapper_close() { echo '
'; } } add_action( 'woocommerce_after_shop_loop', 'ip_woocommerce_product_columns_wrapper_close', 40 ); /** * 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( 'ip_woocommerce_wrapper_before' ) ) { /** * Before Content. * * Wraps all WooCommerce content in wrappers which match the theme markup. * * @return void */ function ip_woocommerce_wrapper_before() { ?>
*/ if ( ! function_exists( 'ip_woocommerce_cart_link_fragment' ) ) { /** * Cart Fragments. * * Ensure cart contents update when products are added to the cart via AJAX. * * @param array $fragments Fragments to refresh via AJAX. * @return array Fragments to refresh via AJAX. */ function ip_woocommerce_cart_link_fragment( $fragments ) { ob_start(); ip_woocommerce_cart_link(); $fragments['a.cart-contents'] = ob_get_clean(); return $fragments; } } add_filter( 'woocommerce_add_to_cart_fragments', 'ip_woocommerce_cart_link_fragment' ); if ( ! function_exists( 'ip_woocommerce_cart_link' ) ) { /** * Cart Link. * * Displayed a link to the cart including the number of items present and the cart total. * * @return void */ function ip_woocommerce_cart_link() { ?> cart->get_cart_subtotal() ); ?> cart->get_cart_contents_count(), 'independent-publisher-2' ), WC()->cart->get_cart_contents_count() ) );?>
  • '', ); the_widget( 'WC_Widget_Cart', $instance ); ?>
get( 'page_id' ); $shop_page_id = apply_filters( 'woocommerce_get_shop_page_id', get_option( 'woocommerce_shop_page_id' ) ); $is_static_front_page = 'page' === get_option( 'show_on_front' ); if ( $is_static_front_page && $front_page_id === $current_page_id ) { $is_shop_page = ( $current_page_id === wc_get_page_id( 'shop' ) ) ? true : false; } else { $is_shop_page = is_shop(); } return $is_shop_page; } /** * ip_woocommerce_image_dimensions Defines WC image sizes * @return void */ function ip_woocommerce_image_dimensions() { global $pagenow; if ( ! isset( $_GET['activated'] ) || $pagenow != 'themes.php' ) { return; } $catalog = array( 'width' => '400', // px 'height' => '400', // px 'crop' => 1 // true ); $single = array( 'width' => '740', // px 'height' => '740', // px 'crop' => 1 // true ); $thumbnail = array( 'width' => '180', // px 'height' => '180', // px 'crop' => 0 // false ); // Image sizes update_option( 'shop_catalog_image_size', $catalog ); // Product category thumbs update_option( 'shop_single_image_size', $single ); // Single product image update_option( 'shop_thumbnail_image_size', $thumbnail ); // Image gallery thumbs } add_action( 'after_switch_theme', 'ip_woocommerce_image_dimensions', 1 );