woocommerce.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365
  1. <?php
  2. /**
  3. * WooCommerce Compatibility File
  4. *
  5. * @link https://woocommerce.com/
  6. *
  7. * @package Dyad
  8. */
  9. /**
  10. * WooCommerce setup function.
  11. *
  12. * @link https://docs.woocommerce.com/document/third-party-custom-theme-compatibility/
  13. * @link https://github.com/woocommerce/woocommerce/wiki/Enabling-product-gallery-features-(zoom,-swipe,-lightbox)-in-3.0.0
  14. *
  15. * @return void
  16. */
  17. function dyad_2_woocommerce_setup() {
  18. add_theme_support( 'woocommerce', apply_filters( 'dyad_2_woocommerce_args', array(
  19. 'single_image_width' => 700,
  20. 'thumbnail_image_width' => 360,
  21. 'product_grid' => array(
  22. 'default_columns' => 3,
  23. 'default_rows' => 4,
  24. 'min_columns' => 1,
  25. 'max_columns' => 6,
  26. 'min_rows' => 1
  27. )
  28. ) ) );
  29. add_theme_support( 'wc-product-gallery-zoom' );
  30. add_theme_support( 'wc-product-gallery-lightbox' );
  31. add_theme_support( 'wc-product-gallery-slider' );
  32. }
  33. add_action( 'after_setup_theme', 'dyad_2_woocommerce_setup' );
  34. /**
  35. * WooCommerce specific scripts & stylesheets.
  36. *
  37. * @return void
  38. */
  39. function dyad_2_woocommerce_scripts() {
  40. wp_enqueue_style( 'dyad-2-woocommerce-style', get_template_directory_uri() . '/woocommerce.css', array(), time() );
  41. wp_style_add_data( 'dyad-2-woocommerce-style', 'rtl', get_stylesheet_directory_uri() . '/woocommerce-rtl.css' );
  42. $font_path = WC()->plugin_url() . '/assets/fonts/';
  43. $inline_font = '@font-face {
  44. font-family: "star";
  45. src: url("' . $font_path . 'star.eot");
  46. src: url("' . $font_path . 'star.eot?#iefix") format("embedded-opentype"),
  47. url("' . $font_path . 'star.woff") format("woff"),
  48. url("' . $font_path . 'star.ttf") format("truetype"),
  49. url("' . $font_path . 'star.svg#star") format("svg");
  50. font-weight: normal;
  51. font-style: normal;
  52. }';
  53. wp_add_inline_style( 'dyad-2-woocommerce-style', $inline_font );
  54. }
  55. add_action( 'wp_enqueue_scripts', 'dyad_2_woocommerce_scripts' );
  56. /**
  57. * Define image sizes
  58. *
  59. * @link https://docs.woocommerce.com/document/set-woocommerce-image-dimensions-upon-theme-activation/
  60. *
  61. * @return void
  62. */
  63. function dyad_2_woocommerce_image_dimensions() {
  64. global $pagenow;
  65. if ( ! isset( $_GET['activated'] ) || $pagenow != 'themes.php' ) {
  66. return;
  67. }
  68. $catalog = array(
  69. 'width' => '360',
  70. 'height' => '360',
  71. 'crop' => 1,
  72. );
  73. $single = array(
  74. 'width' => '720',
  75. 'height' => '720',
  76. 'crop' => 1,
  77. );
  78. $thumbnail = array(
  79. 'width' => '240',
  80. 'height' => '240',
  81. 'crop' => 0,
  82. );
  83. update_option( 'shop_catalog_image_size', $catalog );
  84. update_option( 'shop_single_image_size', $single );
  85. update_option( 'shop_thumbnail_image_size', $thumbnail );
  86. }
  87. add_action( 'after_switch_theme', 'dyad_2_woocommerce_image_dimensions', 1 );
  88. /**
  89. * Disable the default WooCommerce stylesheet.
  90. *
  91. * Removing the default WooCommerce stylesheet and enqueing your own will
  92. * protect you during WooCommerce core updates.
  93. *
  94. * @link https://docs.woocommerce.com/document/disable-the-default-stylesheet/
  95. */
  96. add_filter( 'woocommerce_enqueue_styles', '__return_empty_array' );
  97. /**
  98. * Add 'woocommerce-active' class to the body tag.
  99. *
  100. * @param array $classes CSS classes applied to the body tag.
  101. * @return array $classes modified to include 'woocommerce-active' class.
  102. */
  103. function dyad_2_woocommerce_active_body_class( $classes ) {
  104. $classes[] = 'woocommerce-active';
  105. return $classes;
  106. }
  107. add_filter( 'body_class', 'dyad_2_woocommerce_active_body_class' );
  108. /**
  109. * Products per page.
  110. *
  111. * @return integer number of products.
  112. */
  113. function dyad_2_woocommerce_products_per_page() {
  114. return 12;
  115. }
  116. // Legacy WooCommerce products per page filter.
  117. if ( defined( 'WC_VERSION' ) && version_compare( WC_VERSION, '3.3', '<' ) ) {
  118. add_filter( 'loop_shop_per_page', 'dyad_2_woocommerce_products_per_page' );
  119. }
  120. /**
  121. * Product gallery thumnbail columns.
  122. *
  123. * @return integer number of columns.
  124. */
  125. function dyad_2_woocommerce_thumbnail_columns() {
  126. return 6;
  127. }
  128. add_filter( 'woocommerce_product_thumbnails_columns', 'dyad_2_woocommerce_thumbnail_columns' );
  129. /**
  130. * Default loop columns on product archives.
  131. *
  132. * @return integer products per row.
  133. */
  134. function dyad_2_woocommerce_loop_columns() {
  135. return 3;
  136. }
  137. // Legacy WooCommerce columns filter.
  138. if ( defined( 'WC_VERSION' ) && version_compare( WC_VERSION, '3.3', '<' ) ) {
  139. add_filter( 'loop_shop_columns', 'dyad_2_woocommerce_loop_columns' );
  140. }
  141. /**
  142. * Related Products Args.
  143. *
  144. * @param array $args related products args.
  145. * @return array $args related products args.
  146. */
  147. function dyad_2_woocommerce_related_products_args( $args ) {
  148. $defaults = array(
  149. 'posts_per_page' => 3,
  150. 'columns' => 3,
  151. );
  152. $args = wp_parse_args( $defaults, $args );
  153. return $args;
  154. }
  155. add_filter( 'woocommerce_output_related_products_args', 'dyad_2_woocommerce_related_products_args' );
  156. /**
  157. * Cross Sell total
  158. */
  159. function dyad_2_woocommerce_cross_sell_total( $columns ) {
  160. return 2;
  161. }
  162. add_filter( 'woocommerce_cross_sells_total', 'dyad_2_woocommerce_cross_sell_total' );
  163. if ( ! function_exists( 'dyad_2_woocommerce_product_columns_wrapper' ) ) {
  164. /**
  165. * Product columns wrapper.
  166. *
  167. * @return void
  168. */
  169. function dyad_2_woocommerce_product_columns_wrapper() {
  170. $columns = dyad_2_loop_columns();
  171. echo '<div class="columns-' . absint( $columns ) . '">';
  172. }
  173. }
  174. add_action( 'woocommerce_before_shop_loop', 'dyad_2_woocommerce_product_columns_wrapper', 40 );
  175. if ( ! function_exists( 'dyad_2_loop_columns' ) ) {
  176. /**
  177. * Default loop columns on product archives
  178. *
  179. * @return integer products per row
  180. */
  181. function dyad_2_loop_columns() {
  182. $columns = 3; // 3 products per row
  183. if ( function_exists( 'wc_get_default_products_per_row' ) ) {
  184. $columns = wc_get_default_products_per_row();
  185. }
  186. return apply_filters( 'dyad_2_loop_columns', $columns );
  187. }
  188. }
  189. if ( ! function_exists( 'dyad_2_woocommerce_product_columns_wrapper_close' ) ) {
  190. /**
  191. * Product columns wrapper close.
  192. *
  193. * @return void
  194. */
  195. function dyad_2_woocommerce_product_columns_wrapper_close() {
  196. echo '</div>';
  197. }
  198. }
  199. add_action( 'woocommerce_after_shop_loop', 'dyad_2_woocommerce_product_columns_wrapper_close', 40 );
  200. /**
  201. * Remove default WooCommerce wrapper.
  202. */
  203. remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 );
  204. remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 );
  205. /**
  206. * Remove sidebar
  207. */
  208. remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10 );
  209. if ( ! function_exists( 'dyad_2_woocommerce_wrapper_before' ) ) {
  210. /**
  211. * Before Content.
  212. *
  213. * Wraps all WooCommerce content in wrappers which match the theme markup.
  214. *
  215. * @return void
  216. */
  217. function dyad_2_woocommerce_wrapper_before() {
  218. ?>
  219. <main id="primary" class="content-area" role="main">
  220. <div id="posts" class="posts">
  221. <?php
  222. }
  223. }
  224. add_action( 'woocommerce_before_main_content', 'dyad_2_woocommerce_wrapper_before' );
  225. if ( ! function_exists( 'dyad_2_woocommerce_wrapper_after' ) ) {
  226. /**
  227. * After Content.
  228. *
  229. * Closes the wrapping divs.
  230. *
  231. * @return void
  232. */
  233. function dyad_2_woocommerce_wrapper_after() {
  234. ?>
  235. </div>
  236. </main><!-- #primary -->
  237. <?php
  238. }
  239. }
  240. add_action( 'woocommerce_after_main_content', 'dyad_2_woocommerce_wrapper_after' );
  241. if ( ! function_exists( 'dyad_2_woocommerce_cart_link_fragment' ) ) {
  242. /**
  243. * Cart Fragments.
  244. *
  245. * Ensure cart contents update when products are added to the cart via AJAX.
  246. *
  247. * @param array $fragments Fragments to refresh via AJAX.
  248. * @return array Fragments to refresh via AJAX.
  249. */
  250. function dyad_2_woocommerce_cart_link_fragment( $fragments ) {
  251. ob_start();
  252. dyad_2_woocommerce_cart_link();
  253. $fragments['a.cart-contents'] = ob_get_clean();
  254. return $fragments;
  255. }
  256. }
  257. add_filter( 'woocommerce_add_to_cart_fragments', 'dyad_2_woocommerce_cart_link_fragment' );
  258. if ( ! function_exists( 'dyad_2_woocommerce_cart_link' ) ) {
  259. /**
  260. * Cart Link.
  261. *
  262. * Displayed a link to the cart including the number of items present and the cart total.
  263. *
  264. * @return void
  265. */
  266. function dyad_2_woocommerce_cart_link() {
  267. ?>
  268. <a class="cart-contents" href="<?php echo esc_url( wc_get_cart_url() ); ?>" title="<?php esc_attr_e( 'View your shopping cart', 'dyad-2' ); ?>">
  269. <?php /* translators: number of items in the mini cart. */ ?>
  270. <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>
  271. </a>
  272. <?php
  273. }
  274. }
  275. if ( ! function_exists( 'dyad_2_woocommerce_header_cart' ) ) {
  276. /**
  277. * Display Header Cart.
  278. *
  279. * @return void
  280. */
  281. function dyad_2_woocommerce_header_cart() {
  282. if ( is_cart() ) {
  283. $class = 'current-menu-item';
  284. } else {
  285. $class = '';
  286. }
  287. ?>
  288. <ul id="site-header-cart" class="site-header-cart">
  289. <li class="<?php echo esc_attr( $class ); ?>">
  290. <?php dyad_2_woocommerce_cart_link(); ?>
  291. </li>
  292. <li>
  293. <?php
  294. $instance = array(
  295. 'title' => '',
  296. );
  297. the_widget( 'WC_Widget_Cart', $instance );
  298. ?>
  299. </li>
  300. </ul>
  301. <?php
  302. }
  303. }
  304. // Change review avatar size
  305. add_filter( 'woocommerce_review_gravatar_size', function() { return '80'; } );
  306. /**
  307. * Workaround to prevent is_shop() from failing due to WordPress core issue
  308. *
  309. * @link https://core.trac.wordpress.org/ticket/21790
  310. * @param array $args infinite scroll args.
  311. * @return array infinite scroll args.
  312. */
  313. function dyad_2_woocommerce_is_shop_page() {
  314. global $wp_query;
  315. $front_page_id = get_option( 'page_on_front' );
  316. $current_page_id = $wp_query->get( 'page_id' );
  317. $shop_page_id = apply_filters( 'woocommerce_get_shop_page_id', get_option( 'woocommerce_shop_page_id' ) );
  318. $is_static_front_page = 'page' === get_option( 'show_on_front' );
  319. if ( $is_static_front_page && $front_page_id === $current_page_id ) {
  320. $is_shop_page = ( $current_page_id === wc_get_page_id( 'shop' ) ) ? true : false;
  321. } else {
  322. $is_shop_page = is_shop();
  323. }
  324. return $is_shop_page;
  325. }
  326. /**
  327. * Move the sale flash badge
  328. */
  329. remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
  330. add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 6 );
  331. remove_action ( 'woocommerce_before_single_product_summary', 'woocommerce_show_product_sale_flash', 10 );
  332. add_action ( 'woocommerce_single_product_summary', 'woocommerce_show_product_sale_flash', 5 );