File manager - Edit - /home/buyherba/purecannabishub.com/wp-content/plugins/booster-plus-for-woocommerce/includes/class-wcj-cart-customization.php
Back
<?php /** * Booster for WooCommerce - Module - Cart Customization * * @version 6.0.0 * @since 1.0.0 * @author Pluggabl LLC. * @package Booster_Plus_For_WooCommerce/includes. */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } if ( ! class_exists( 'WCJ_Cart_Customization' ) ) : /** * WCJ_Cart_Customization. * * @version 6.0.0 */ class WCJ_Cart_Customization extends WCJ_Module { /** * Constructor. * * @version 6.0.0 * @since 1.0.0 */ public function __construct() { $this->id = 'cart_customization'; $this->short_desc = __( 'Cart Customization', 'woocommerce-jetpack' ); $this->desc = __( 'Customize WooCommerce cart - hide coupon field; item remove link; change empty cart "Return to shop" button text.', 'woocommerce-jetpack' ); $this->link_slug = 'woocommerce-cart-customization'; parent::__construct(); if ( $this->is_enabled() ) { // Hide coupon. if ( 'yes' === wcj_get_option( 'wcj_cart_hide_coupon', 'no' ) ) { add_filter( 'woocommerce_coupons_enabled', array( $this, 'hide_coupon_field_on_cart' ), PHP_INT_MAX ); } // Hide item remove link. if ( 'yes' === wcj_get_option( 'wcj_cart_hide_item_remove_link', 'no' ) ) { add_filter( 'woocommerce_cart_item_remove_link', '__return_empty_string', PHP_INT_MAX ); } // Customize "Return to shop" button text. if ( 'yes' === wcj_get_option( 'wcj_cart_customization_return_to_shop_button_enabled', 'no' ) ) { if ( 'js' === wcj_get_option( 'wcj_cart_customization_return_to_shop_button_text_method', 'js' ) ) { add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ) ); } else { // 'template' add_filter( 'wc_get_template', array( $this, 'replace_empty_cart_template' ), PHP_INT_MAX, 5 ); add_filter( 'wcj_return_to_shop_text', array( $this, 'change_empty_cart_button_text' ), PHP_INT_MAX ); } } // Customize "Return to shop" button link. if ( 'yes' === wcj_get_option( 'wcj_cart_customization_return_to_shop_button_link_enabled', 'no' ) ) { add_action( 'woocommerce_return_to_shop_redirect', array( $this, 'change_empty_cart_return_to_shop_link' ) ); } } } /** * Change_empty_cart_button_text. * * @version 6.0.0 * @since 1.0.0 * @param string $text defines the text. */ public function change_empty_cart_button_text( $text ) { return wcj_get_option( 'wcj_cart_customization_return_to_shop_button_text', __( 'Return to shop', 'woocommerce' ) ); } /** * Replace_empty_cart_template. * * @version 6.0.0 * @since 1.0.0 * @todo [dev] fix folder structure in `/templates` * @param string $located defines the located. * @param string $template_name defines the template_name. * @param array $args defines the args. * @param string $template_path defines the template_path. * @param string $default_path defines the default_path. */ public function replace_empty_cart_template( $located, $template_name, $args, $template_path, $default_path ) { if ( 'cart/cart-empty.php' === $template_name ) { $located = untrailingslashit( realpath( plugin_dir_path( __FILE__ ) . '/..' ) ) . '/includes/templates/cart-empty.php'; } return $located; } /** * Change_empty_cart_return_to_shop_link. * * @version 6.0.0 * @since 1.0.0 * @todo [dev] (maybe) check if link is not empty * @param string $link defines the link. */ public function change_empty_cart_return_to_shop_link( $link ) { return ( is_cart() ? wcj_get_option( 'wcj_cart_customization_return_to_shop_button_link', '' ) : $link ); } /** * Enqueue_scripts. * * @version 6.0.0 * @since 1.0.0 * @todo [dev] maybe check `is_cart()` */ public function enqueue_scripts() { wp_enqueue_script( 'wcj-cart-customization', wcj_plugin_url() . '/includes/js/wcj-cart-customization.js', array( 'jquery' ), WCJ()->version, false ); wp_localize_script( 'wcj-cart-customization', 'wcj_cart_customization', array( 'return_to_shop_button_text' => wcj_get_option( 'wcj_cart_customization_return_to_shop_button_text', __( 'Return to shop', 'woocommerce' ) ), ) ); } /** * Hide_coupon_field_on_cart. * * @version 6.0.0 * @since 1.0.0 * @param string $enabled defines the enabled. */ public function hide_coupon_field_on_cart( $enabled ) { return ( is_cart() ) ? false : $enabled; } } endif; return new WCJ_Cart_Customization();
| ver. 1.4 |
Github
|
.
| PHP 8.1.34 | Generation time: 0.08 |
proxy
|
phpinfo
|
Settings