PATH:
home
/
thebhoeo
/
public_html
/
wp-content
/
themes
/
woodmart
/
inc
/
integrations
/
woocommerce
/
modules
<?php /** * WooCommerce catalog mode functions * * @package woodmart */ if ( ! defined( 'WOODMART_THEME_DIR' ) ) { exit( 'No direct script access allowed' ); } /** * ------------------------------------------------------------------------------------------------ * WooCommerce catalog mode functions * ------------------------------------------------------------------------------------------------ */ if ( ! function_exists( 'woodmart_catalog_mode_init' ) ) { /** * Disable add to cart buttons in catalog mode. */ function woodmart_catalog_mode_init() { if ( ! woodmart_get_opt( 'catalog_mode' ) || ! woodmart_woocommerce_installed() ) { return; } remove_action( 'woodmart_add_loop_btn', 'woocommerce_template_loop_add_to_cart', 10 ); $product = wc_get_product(); if ( $product instanceof WC_Product && 'variable' === $product->get_type() ) { remove_action( 'woocommerce_single_variation', 'woocommerce_single_variation_add_to_cart_button', 20 ); } else { remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 ); } } add_action( 'wp', 'woodmart_catalog_mode_init', 10 ); add_action( 'woocommerce_before_shop_loop_item', 'woodmart_catalog_mode_init', 10 ); } if ( ! function_exists( 'woodmart_catalog_mode_pages_redirect' ) ) { /** * Redirect cart and checkout pages to home page in catalog mode. */ function woodmart_catalog_mode_pages_redirect() { if ( ! woodmart_get_opt( 'catalog_mode' ) || ! woodmart_woocommerce_installed() ) { return; } $cart = is_page( wc_get_page_id( 'cart' ) ); $checkout = is_page( wc_get_page_id( 'checkout' ) ); wp_reset_postdata(); if ( $cart || $checkout ) { wp_safe_redirect( home_url() ); exit; } } add_action( 'wp', 'woodmart_catalog_mode_pages_redirect', 10 ); } if ( ! function_exists( 'woodmart_add_class_for_catalog_mode_in_admin_panel' ) ) { /** * Add a class for catalog mode in the admin panel. * * @param string $classes The existing classes for the admin body. * * @return string The modified classes for the admin body. */ function woodmart_add_class_for_catalog_mode_in_admin_panel( $classes ) { if ( get_current_screen() && get_current_screen()->is_block_editor() && woodmart_get_opt( 'catalog_mode' ) ) { $classes .= ' catalog-mode-on'; } return $classes; } add_filter( 'admin_body_class', 'woodmart_add_class_for_catalog_mode_in_admin_panel' ); }
[-] class-adjacent-products.php
[edit]
[-] brands.php
[edit]
[-] swatches.php
[edit]
[+]
show-single-variations
[+]
sticky-navigation
[+]
counter-visitors
[-] quick-view.php
[edit]
[+]
quick-buy
[-] quantity.php
[edit]
[+]
review-reminder
[+]
product-tabs
[+]
wishlist
[+]
abandoned-cart
[+]
shipping-progress-bar
[+]
sold-counter
[+]
out-of-stock-manager
[+]
checkout-fields
[-] size-guide.php
[edit]
[+]
checkout-order-table
[+]
product-gallery-video
[-] maintenance.php
[edit]
[-] quick-shop.php
[edit]
[-] variation-gallery.php
[edit]
[-] product-360-view.php
[edit]
[+]
compare
[+]
dynamic-discounts
[-] variation-gallery-new.php
[edit]
[-] progress-bar.php
[edit]
[-] attributes-meta-boxes.php
[edit]
[+]
estimate-delivery
[+]
..
[+]
free-gifts
[+]
product-reviews
[+]
price-tracker
[+]
marketing-consent
[+]
frequently-bought-together
[+]
linked-variations
[+]
waitlist
[+]
custom-labels
[+]
unit-of-measure
[-] catalog-mode.php
[edit]