????

Your IP : 3.147.69.122


Current Path : /home/multihiv/www/store/wp-content/themes/inc/modules/layouts/wpb/maps/single-product/
Upload File :
Current File : /home/multihiv/www/store/wp-content/themes/inc/modules/layouts/wpb/maps/single-product/content.php

<?php
/**
 * Content map.
 *
 * @package Woodmart
 */

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

if ( ! function_exists( 'woodmart_get_vc_map_single_product_content' ) ) {
	/**
	 * Content map.
	 */
	function woodmart_get_vc_map_single_product_content() {
		return array(
			'base'        => 'woodmart_single_product_content',
			'name'        => esc_html__( 'Product content', 'woodmart' ),
			'category'    => woodmart_get_tab_title_category_for_wpb( esc_html__( 'Single product elements', 'woodmart' ), 'single_product' ),
			'description' => esc_html__( 'Product long description', 'woodmart' ),
			'icon'        => WOODMART_ASSETS . '/images/vc-icon/sp-icons/sp-content.svg',
			'params'      => array(
				array(
					'group'      => esc_html__( 'Design Options', 'js_composer' ),
					'type'       => 'woodmart_css_id',
					'param_name' => 'woodmart_css_id',
				),

				array(
					'heading'    => esc_html__( 'CSS box', 'woodmart' ),
					'group'      => esc_html__( 'Design Options', 'js_composer' ),
					'type'       => 'css_editor',
					'param_name' => 'css',
				),
				woodmart_get_vc_responsive_spacing_map(),
			),
		);
	}
}