123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365 |
- <?php
- /**
- * WooCommerce Compatibility File
- *
- * @link https://woocommerce.com/
- *
- * @package Dyad
- */
- /**
- * WooCommerce setup function.
- *
- * @link https://docs.woocommerce.com/document/third-party-custom-theme-compatibility/
- * @link https://github.com/woocommerce/woocommerce/wiki/Enabling-product-gallery-features-(zoom,-swipe,-lightbox)-in-3.0.0
- *
- * @return void
- */
- function dyad_2_woocommerce_setup() {
- add_theme_support( 'woocommerce', apply_filters( 'dyad_2_woocommerce_args', array(
- 'single_image_width' => 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 '<div class="columns-' . absint( $columns ) . '">';
- }
- }
- add_action( 'woocommerce_before_shop_loop', 'dyad_2_woocommerce_product_columns_wrapper', 40 );
- if ( ! function_exists( 'dyad_2_loop_columns' ) ) {
- /**
- * Default loop columns on product archives
- *
- * @return integer products per row
- */
- function dyad_2_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( 'dyad_2_loop_columns', $columns );
- }
- }
- if ( ! function_exists( 'dyad_2_woocommerce_product_columns_wrapper_close' ) ) {
- /**
- * Product columns wrapper close.
- *
- * @return void
- */
- function dyad_2_woocommerce_product_columns_wrapper_close() {
- echo '</div>';
- }
- }
- add_action( 'woocommerce_after_shop_loop', 'dyad_2_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 );
- /**
- * Remove sidebar
- */
- remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10 );
- if ( ! function_exists( 'dyad_2_woocommerce_wrapper_before' ) ) {
- /**
- * Before Content.
- *
- * Wraps all WooCommerce content in wrappers which match the theme markup.
- *
- * @return void
- */
- function dyad_2_woocommerce_wrapper_before() {
- ?>
- <main id="primary" class="content-area" role="main">
- <div id="posts" class="posts">
- <?php
- }
- }
- add_action( 'woocommerce_before_main_content', 'dyad_2_woocommerce_wrapper_before' );
- if ( ! function_exists( 'dyad_2_woocommerce_wrapper_after' ) ) {
- /**
- * After Content.
- *
- * Closes the wrapping divs.
- *
- * @return void
- */
- function dyad_2_woocommerce_wrapper_after() {
- ?>
- </div>
- </main><!-- #primary -->
- <?php
- }
- }
- add_action( 'woocommerce_after_main_content', 'dyad_2_woocommerce_wrapper_after' );
- if ( ! function_exists( 'dyad_2_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 dyad_2_woocommerce_cart_link_fragment( $fragments ) {
- ob_start();
- dyad_2_woocommerce_cart_link();
- $fragments['a.cart-contents'] = ob_get_clean();
- return $fragments;
- }
- }
- add_filter( 'woocommerce_add_to_cart_fragments', 'dyad_2_woocommerce_cart_link_fragment' );
- if ( ! function_exists( 'dyad_2_woocommerce_cart_link' ) ) {
- /**
- * Cart Link.
- *
- * Displayed a link to the cart including the number of items present and the cart total.
- *
- * @return void
- */
- function dyad_2_woocommerce_cart_link() {
- ?>
- <a class="cart-contents" href="<?php echo esc_url( wc_get_cart_url() ); ?>" title="<?php esc_attr_e( 'View your shopping cart', 'dyad-2' ); ?>">
- <?php /* translators: number of items in the mini cart. */ ?>
- <span class="amount"><?php echo wp_kses_data( WC()->cart->get_cart_subtotal() ); ?></span> <span class="count"><?php echo wp_kses_data( sprintf( _n( '%d item', '%d items', WC()->cart->get_cart_contents_count(), 'dyad-2' ), WC()->cart->get_cart_contents_count() ) );?></span>
- </a>
- <?php
- }
- }
- if ( ! function_exists( 'dyad_2_woocommerce_header_cart' ) ) {
- /**
- * Display Header Cart.
- *
- * @return void
- */
- function dyad_2_woocommerce_header_cart() {
- if ( is_cart() ) {
- $class = 'current-menu-item';
- } else {
- $class = '';
- }
- ?>
- <ul id="site-header-cart" class="site-header-cart">
- <li class="<?php echo esc_attr( $class ); ?>">
- <?php dyad_2_woocommerce_cart_link(); ?>
- </li>
- <li>
- <?php
- $instance = array(
- 'title' => '',
- );
- the_widget( 'WC_Widget_Cart', $instance );
- ?>
- </li>
- </ul>
- <?php
- }
- }
- // Change review avatar size
- add_filter( 'woocommerce_review_gravatar_size', function() { return '80'; } );
- /**
- * Workaround to prevent is_shop() from failing due to WordPress core issue
- *
- * @link https://core.trac.wordpress.org/ticket/21790
- * @param array $args infinite scroll args.
- * @return array infinite scroll args.
- */
- function dyad_2_woocommerce_is_shop_page() {
- global $wp_query;
- $front_page_id = get_option( 'page_on_front' );
- $current_page_id = $wp_query->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;
- }
- /**
- * Move the sale flash badge
- */
- remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
- add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 6 );
- remove_action ( 'woocommerce_before_single_product_summary', 'woocommerce_show_product_sale_flash', 10 );
- add_action ( 'woocommerce_single_product_summary', 'woocommerce_show_product_sale_flash', 5 );
|