cart->is_empty(); break; } return $is_active; } /** * Override templates. * * @param string $template Template. * * @return bool|string */ public function override_template( $template ) { if ( woodmart_woocommerce_installed() && is_cart() && Main::get_instance()->has_custom_layout( 'cart' ) ) { $this->display_template(); return false; } return $template; } /** * Display custom template on the shop page. */ private function display_template() { $this->before_template_content(); ?>
template_content( 'cart' ); ?>
after_template_content(); } } Cart::get_instance();