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( '_s-woocommerce-style', $inline_font ); } add_action( 'wp_enqueue_scripts', '_s_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 _s_woocommerce_active_body_class( $classes ) { $classes[] = 'woocommerce-active'; return $classes; } add_filter( 'body_class', '_s_woocommerce_active_body_class' ); /** * Products per page. * * @return integer number of products. */ function _s_woocommerce_products_per_page() { return 12; } add_filter( 'loop_shop_per_page', '_s_woocommerce_products_per_page' ); /** * Product gallery thumnbail columns. * * @return integer number of columns. */ function _s_woocommerce_thumbnail_columns() { return 4; } add_filter( 'woocommerce_product_thumbnails_columns', '_s_woocommerce_thumbnail_columns' ); /** * Default loop columns on product archives. * * @return integer products per row. */ function _s_woocommerce_loop_columns() { return 3; } add_filter( 'loop_shop_columns', '_s_woocommerce_loop_columns' ); /** * Related Products Args. * * @param array $args related products args. * @return array $args related products args. */ function _s_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', '_s_woocommerce_related_products_args' ); if ( ! function_exists( '_s_woocommerce_product_columns_wrapper' ) ) { /** * Product columns wrapper. * * @return void */ function _s_woocommerce_product_columns_wrapper() { $columns = _s_woocommerce_loop_columns(); echo '