Server IP : 162.0.217.223 / Your IP : 216.73.216.112 Web Server : LiteSpeed System : Linux premium269.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : mypckeys ( 1539) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mypckeys/www/wp-content/themes/woodmart/inc/integrations/woocommerce/modules/ |
Upload File : |
<?php if ( ! defined( 'WOODMART_THEME_DIR' ) ) { exit( 'No direct script access allowed' ); } /** * ------------------------------------------------------------------------------------------------ * WooCommerce catalog mode functions * ------------------------------------------------------------------------------------------------ */ if ( ! function_exists( 'woodmart_catalog_mode_init' ) ) { function woodmart_catalog_mode_init() { if ( ! woodmart_get_opt( 'catalog_mode' ) ) { return; } remove_action( 'woodmart_add_loop_btn', 'woocommerce_template_loop_add_to_cart', 10 ); 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' ) ) { 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_redirect( home_url() ); exit; } } add_action( 'wp', 'woodmart_catalog_mode_pages_redirect', 10 ); }