????

Your IP : 18.221.89.241


Current Path : /home/multihiv/www/store/wp-content/themes/inc/modules/layouts/wpb/shortcodes/cart/
Upload File :
Current File : /home/multihiv/www/store/wp-content/themes/inc/modules/layouts/wpb/shortcodes/cart/empty-cart.php

<?php
/**
 * Empty cart template.
 *
 * @package Woodmart
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Direct access not allowed.
}

if ( ! function_exists( 'woodmart_shortcode_empty_cart_template' ) ) {
	/**
	 * Empty cart template shortcode.
	 *
	 * @param array $settings Shortcode attributes.
	 */
	function woodmart_shortcode_empty_cart( $settings ) {
		$default_settings = array(
			'css' => '',
		);

		$settings = wp_parse_args( $settings, $default_settings );

		$wrapper_classes = apply_filters( 'vc_shortcodes_css_class', '', '', $settings );

		if ( $settings['css'] ) {
			$wrapper_classes .= ' ' . vc_shortcode_custom_css_class( $settings['css'] );
		}

		ob_start();

		?>
		<div class="wd-wpb<?php echo esc_attr( $wrapper_classes ); ?>">
			<?php wc_get_template( 'cart/cart-empty.php' ); ?>
		</div>
		<?php

		return ob_get_clean();
	}
}