PATH:
home
/
thebhoeo
/
public_html
/
pashtoo
/
wp-content
/
themes
/
woodmart
/
inc
/
integrations
/
visual-composer
/
maps
<?php use XTS\Modules\Layouts\Main; if ( ! defined( 'WOODMART_THEME_DIR' ) ) { exit( 'No direct script access allowed' );} /** * ------------------------------------------------------------------------------------------------ * Blog element map * ------------------------------------------------------------------------------------------------ */ if ( ! function_exists( 'woodmart_get_vc_map_blog' ) ) { function woodmart_get_vc_map_blog() { $post_types_list = array( array( 'post', esc_html__( 'Post', 'woodmart' ) ), array( 'ids', esc_html__( 'List of IDs', 'woodmart' ) ), ); if ( Main::is_layout_type( 'single_post' ) ) { $post_types_list[] = array( 'related_posts', esc_html__( 'Related posts', 'woodmart' ) ); } $typography = woodmart_get_typography_map( array( 'key' => 'title', 'selector' => '{{WRAPPER}} .wd-el-title', ) ); return array( 'name' => esc_html__( 'Blog', 'woodmart' ), 'base' => 'woodmart_blog', 'category' => woodmart_get_tab_title_category_for_wpb( esc_html__( 'Theme elements', 'woodmart' ) ), 'description' => esc_html__( 'Show your blog posts on the page', 'woodmart' ), 'icon' => WOODMART_ASSETS . '/images/vc-icon/blog.svg', 'params' => array( array( 'type' => 'woodmart_css_id', 'param_name' => 'woodmart_css_id', ), /** * Blog title */ array( 'type' => 'woodmart_title_divider', 'holder' => 'div', 'title' => esc_html__( 'Title', 'woodmart' ), 'param_name' => 'title_divider', ), array( 'type' => 'textfield', 'heading' => esc_html__( 'Element title', 'woodmart' ), 'param_name' => 'element_title', ), array( 'type' => 'dropdown', 'heading' => esc_html__( 'Tag', 'woodmart' ), 'param_name' => 'element_title_tag', 'value' => array( esc_html__( 'h1', 'woodmart' ) => 'h1', esc_html__( 'h2', 'woodmart' ) => 'h2', esc_html__( 'h3', 'woodmart' ) => 'h3', esc_html__( 'h4', 'woodmart' ) => 'h4', esc_html__( 'h5', 'woodmart' ) => 'h5', esc_html__( 'h6', 'woodmart' ) => 'h6', esc_html__( 'div', 'woodmart' ) => 'div', esc_html__( 'p', 'woodmart' ) => 'p', esc_html__( 'span', 'woodmart' ) => 'span', ), 'std' => 'h4', 'edit_field_class' => 'vc_col-sm-6 vc_column', ), array( 'heading' => esc_html__( 'Color', 'woodmart' ), 'type' => 'wd_colorpicker', 'param_name' => 'title_color', 'selectors' => array( '{{WRAPPER}} .wd-el-title' => array( 'color: {{VALUE}};', ), ), 'edit_field_class' => 'vc_col-sm-6 vc_column', ), $typography['font_family'], $typography['font_size'], $typography['font_weight'], $typography['text_transform'], $typography['font_style'], $typography['line_height'], /** * Post source */ array( 'type' => 'woodmart_title_divider', 'holder' => 'div', 'title' => esc_html__( 'Post source', 'woodmart' ), 'param_name' => 'source_divider', ), array( 'type' => 'dropdown', 'heading' => esc_html__( 'Data source', 'woodmart' ), 'param_name' => 'post_type', 'value' => $post_types_list, 'hint' => esc_html__( 'Select content type for your grid.', 'woodmart' ), 'edit_field_class' => 'vc_col-sm-6 vc_column', ), array( 'type' => 'autocomplete', 'heading' => esc_html__( 'Include only', 'woodmart' ), 'param_name' => 'include', 'hint' => esc_html__( 'Add posts, pages, etc. by title.', 'woodmart' ), 'settings' => array( 'multiple' => true, 'sortable' => true, 'groups' => true, ), 'dependency' => array( 'element' => 'post_type', 'value' => array( 'ids' ), ), 'edit_field_class' => 'vc_col-sm-6 vc_column', ), // Custom query tab array( 'type' => 'textarea_safe', 'heading' => esc_html__( 'Custom query', 'woodmart' ), 'param_name' => 'custom_query', 'hint' => wp_kses( __( 'Build custom query according to <a href="http://codex.wordpress.org/Function_Reference/query_posts">WordPress Codex</a>.', 'woodmart' ), array( 'a' => array( 'href' => array(), 'target' => array(), ), ) ), 'dependency' => array( 'element' => 'post_type', 'value' => array( 'custom' ), ), 'edit_field_class' => 'vc_col-sm-6 vc_column', ), array( 'type' => 'autocomplete', 'heading' => esc_html__( 'Narrow data source', 'woodmart' ), 'param_name' => 'taxonomies', 'settings' => array( 'multiple' => true, // is multiple values allowed? default false // 'sortable' => true, // is values are sortable? default false 'min_length' => 1, // min length to start search -> default 2 // 'no_hide' => true, // In UI after select doesn't hide an select list, default false 'groups' => true, // In UI show results grouped by groups, default false 'unique_values' => true, // In UI show results except selected. NB! You should manually check values in backend, default false 'display_inline' => true, // In UI show results inline view, default false (each value in own line) 'delay' => 500, // delay for search. default 500 'auto_focus' => true, // auto focus input, default true // 'values' => $taxonomies_for_filter, ), 'param_holder_class' => 'vc_not-for-custom', 'hint' => esc_html__( 'Enter categories, tags or custom taxonomies.', 'woodmart' ), 'dependency' => array( 'element' => 'post_type', 'value_not_equal_to' => array( 'ids', 'related_posts' ), ), 'edit_field_class' => 'vc_col-sm-6 vc_column', ), /** * Pagination */ array( 'type' => 'woodmart_title_divider', 'holder' => 'div', 'title' => esc_html__( 'Pagination', 'woodmart' ), 'param_name' => 'pagination_divider', ), array( 'type' => 'textfield', 'heading' => esc_html__( 'Items per page', 'woodmart' ), 'param_name' => 'items_per_page', 'hint' => esc_html__( 'Number of items to show per page.', 'woodmart' ), 'value' => '10', 'edit_field_class' => 'vc_col-sm-6 vc_column', ), array( 'type' => 'dropdown', 'heading' => esc_html__( 'Pagination', 'woodmart' ), 'param_name' => 'pagination', 'value' => array( '' => '', esc_html__( 'Pagination', 'woodmart' ) => 'pagination', wp_kses( __( 'Load more button', 'woodmart' ), 'entities' ) => 'more-btn', esc_html__( 'Infinit scrolling', 'woodmart' ) => 'infinit', ), 'dependency' => array( 'element' => 'blog_design', 'value_not_equal_to' => array( 'carousel' ), ), 'edit_field_class' => 'vc_col-sm-6 vc_column', ), /** * Design */ array( 'type' => 'woodmart_title_divider', 'holder' => 'div', 'title' => esc_html__( 'Design', 'woodmart' ), 'group' => esc_html__( 'Design', 'woodmart' ), 'param_name' => 'design_divider', ), array( 'type' => 'dropdown', 'heading' => esc_html__( 'Blog design', 'woodmart' ), 'param_name' => 'blog_design', 'value' => array( esc_html__( 'Default', 'woodmart' ) => 'default', esc_html__( 'Default alternative', 'woodmart' ) => 'default-alt', esc_html__( 'Small images', 'woodmart' ) => 'small-images', esc_html__( 'Chess', 'woodmart' ) => 'chess', esc_html__( 'Grid', 'woodmart' ) => 'masonry', esc_html__( 'Mask on image', 'woodmart' ) => 'mask', esc_html__( 'Meta on image', 'woodmart' ) => 'meta-image', esc_html__( 'Carousel', 'woodmart' ) => 'carousel', esc_html__( 'List', 'woodmart' ) => 'list', ), 'hint' => esc_html__( 'You can use different design for your blog styled for the theme', 'woodmart' ), 'group' => esc_html__( 'Design', 'woodmart' ), 'edit_field_class' => 'vc_col-sm-6 vc_column', ), array( 'type' => 'dropdown', 'heading' => esc_html__( 'Blog carousel design', 'woodmart' ), 'param_name' => 'blog_carousel_design', 'value' => array( esc_html__( 'Default', 'woodmart' ) => 'masonry', esc_html__( 'Small images', 'woodmart' ) => 'small-images', esc_html__( 'Mask on image', 'woodmart' ) => 'mask', esc_html__( 'Meta on image', 'woodmart' ) => 'meta-image', ), 'hint' => esc_html__( 'You can use different design for your blog carousel', 'woodmart' ), 'group' => esc_html__( 'Design', 'woodmart' ), 'dependency' => array( 'element' => 'blog_design', 'value' => array( 'carousel' ), ), ), array( 'type' => 'woodmart_switch', 'heading' => esc_html__( 'Masonry', 'woodmart' ), 'param_name' => 'blog_masonry', 'group' => esc_html__( 'Design', 'woodmart' ), 'true_state' => 1, 'false_state' => 0, 'default' => 0, 'dependency' => array( 'element' => 'blog_design', 'value' => array( 'masonry', 'mask' ), ), 'edit_field_class' => 'vc_col-sm-6 vc_column', ), array( 'type' => 'textfield', 'heading' => esc_html__( 'Images size', 'woodmart' ), 'group' => esc_html__( 'Design', 'woodmart' ), 'param_name' => 'img_size', 'hint' => esc_html__( 'Enter image size. Example: \'thumbnail\', \'medium\', \'large\', \'full\' or other sizes defined by current theme. Alternatively enter image size in pixels: 200x100 (Width x Height). Leave empty to use \'thumbnail\' size.', 'woodmart' ), ), array( 'type' => 'woodmart_button_set', 'heading' => esc_html__( 'Columns', 'woodmart' ), 'hint' => esc_html__( 'Number of columns in the grid.', 'woodmart' ), 'group' => esc_html__( 'Design', 'woodmart' ), 'param_name' => 'columns_tabs', 'tabs' => true, 'value' => array( esc_html__( 'Desktop', 'woodmart' ) => 'desktop', esc_html__( 'Tablet', 'woodmart' ) => 'tablet', esc_html__( 'Mobile', 'woodmart' ) => 'mobile', ), 'dependency' => array( 'element' => 'blog_design', 'value' => array( 'masonry', 'mask', 'meta-image' ), ), 'default' => 'desktop', 'edit_field_class' => 'wd-res-control wd-custom-width vc_col-sm-12 vc_column', ), array( 'type' => 'dropdown', 'param_name' => 'blog_columns', 'group' => esc_html__( 'Design', 'woodmart' ), 'value' => array( '1' => '1', '2' => '2', '3' => '3', '4' => '4', ), 'std' => '3', 'dependency' => array( 'element' => 'blog_design', 'value' => array( 'masonry', 'mask', 'meta-image' ), ), 'wd_dependency' => array( 'element' => 'columns_tabs', 'value' => array( 'desktop' ), ), 'edit_field_class' => 'wd-res-item vc_col-sm-12 vc_column', ), array( 'type' => 'dropdown', 'param_name' => 'blog_columns_tablet', 'group' => esc_html__( 'Design', 'woodmart' ), 'value' => array( esc_html__( 'Auto', 'woodmart' ) => 'auto', '1' => '1', '2' => '2', '3' => '3', '4' => '4', ), 'std' => 'auto', 'dependency' => array( 'element' => 'blog_design', 'value' => array( 'masonry', 'mask', 'meta-image' ), ), 'wd_dependency' => array( 'element' => 'columns_tabs', 'value' => array( 'tablet' ), ), 'edit_field_class' => 'wd-res-item vc_col-sm-12 vc_column', ), array( 'type' => 'dropdown', 'param_name' => 'blog_columns_mobile', 'group' => esc_html__( 'Design', 'woodmart' ), 'value' => array( esc_html__( 'Auto', 'woodmart' ) => 'auto', '1' => '1', '2' => '2', '3' => '3', '4' => '4', ), 'std' => 'auto', 'dependency' => array( 'element' => 'blog_design', 'value' => array( 'masonry', 'mask', 'meta-image' ), ), 'wd_dependency' => array( 'element' => 'columns_tabs', 'value' => array( 'mobile' ), ), 'edit_field_class' => 'wd-res-item vc_col-sm-12 vc_column', ), array( 'type' => 'woodmart_button_set', 'heading' => esc_html__( 'Space between posts', 'woodmart' ), 'group' => esc_html__( 'Design', 'woodmart' ), 'param_name' => 'blog_spacing_tabs', 'tabs' => true, 'value' => array( esc_html__( 'Desktop', 'woodmart' ) => 'desktop', esc_html__( 'Tablet', 'woodmart' ) => 'tablet', esc_html__( 'Mobile', 'woodmart' ) => 'mobile', ), 'dependency' => array( 'element' => 'blog_design', 'value' => array( 'mask', 'masonry', 'carousel', 'meta-image' ), ), 'default' => 'desktop', 'edit_field_class' => 'wd-res-control wd-custom-width vc_col-sm-12 vc_column', ), array( 'type' => 'dropdown', 'group' => esc_html__( 'Design', 'woodmart' ), 'param_name' => 'blog_spacing', 'value' => array( esc_html__( 'Inherit from Theme Settings', 'woodmart' ) => '', 0 => 0, 2 => 2, 6 => 6, 10 => 10, 20 => 20, 30 => 30, ), 'std' => '', 'dependency' => array( 'element' => 'blog_design', 'value' => array( 'mask', 'masonry', 'carousel', 'meta-image' ), ), 'wd_dependency' => array( 'element' => 'blog_spacing_tabs', 'value' => array( 'desktop' ), ), 'edit_field_class' => 'wd-res-item vc_col-sm-12 vc_column', ), array( 'type' => 'dropdown', 'group' => esc_html__( 'Design', 'woodmart' ), 'param_name' => 'blog_spacing_tablet', 'value' => array( esc_html__( 'Inherit', 'woodmart' ) => '', 0 => 0, 2 => 2, 6 => 6, 10 => 10, 20 => 20, 30 => 30, ), 'std' => '', 'dependency' => array( 'element' => 'blog_design', 'value' => array( 'mask', 'masonry', 'carousel', 'meta-image' ), ), 'wd_dependency' => array( 'element' => 'blog_spacing_tabs', 'value' => array( 'tablet' ), ), 'edit_field_class' => 'wd-res-item vc_col-sm-12 vc_column', ), array( 'type' => 'dropdown', 'group' => esc_html__( 'Design', 'woodmart' ), 'param_name' => 'blog_spacing_mobile', 'value' => array( esc_html__( 'Inherit', 'woodmart' ) => '', 0 => 0, 2 => 2, 6 => 6, 10 => 10, 20 => 20, 30 => 30, ), 'std' => '', 'dependency' => array( 'element' => 'blog_design', 'value' => array( 'mask', 'masonry', 'carousel', 'meta-image' ), ), 'wd_dependency' => array( 'element' => 'blog_spacing_tabs', 'value' => array( 'mobile' ), ), 'edit_field_class' => 'wd-res-item vc_col-sm-12 vc_column', ), /** * Carousel */ array( 'type' => 'woodmart_title_divider', 'holder' => 'div', 'title' => esc_html__( 'Carousel', 'woodmart' ), 'group' => esc_html__( 'Carousel', 'woodmart' ), 'param_name' => 'carousel_divider', 'dependency' => array( 'element' => 'blog_design', 'value' => array( 'carousel' ), ), ), /** * Elements visibility */ array( 'type' => 'woodmart_title_divider', 'holder' => 'div', 'title' => esc_html__( 'Elements visibility', 'woodmart' ), 'group' => esc_html__( 'Design', 'woodmart' ), 'param_name' => 'visibility_divider', ), array( 'type' => 'woodmart_switch', 'heading' => esc_html__( 'Title for posts', 'woodmart' ), 'param_name' => 'parts_title', 'group' => esc_html__( 'Design', 'woodmart' ), 'true_state' => 1, 'false_state' => 0, 'default' => 1, 'edit_field_class' => 'vc_col-sm-6 vc_column', ), array( 'type' => 'woodmart_switch', 'heading' => esc_html__( 'Meta information', 'woodmart' ), 'param_name' => 'parts_meta', 'group' => esc_html__( 'Design', 'woodmart' ), 'true_state' => 1, 'false_state' => 0, 'default' => 1, 'edit_field_class' => 'vc_col-sm-6 vc_column', ), array( 'type' => 'woodmart_switch', 'heading' => esc_html__( 'Post text', 'woodmart' ), 'param_name' => 'parts_text', 'group' => esc_html__( 'Design', 'woodmart' ), 'true_state' => 1, 'false_state' => 0, 'default' => 1, 'edit_field_class' => 'vc_col-sm-6 vc_column', ), array( 'type' => 'woodmart_switch', 'heading' => esc_html__( 'Read more button', 'woodmart' ), 'param_name' => 'parts_btn', 'group' => esc_html__( 'Design', 'woodmart' ), 'true_state' => 1, 'false_state' => 0, 'default' => 1, 'edit_field_class' => 'vc_col-sm-6 vc_column', ), array( 'type' => 'woodmart_switch', 'heading' => esc_html__( 'Published date', 'woodmart' ), 'param_name' => 'parts_published_date', 'group' => esc_html__( 'Design', 'woodmart' ), 'true_state' => 1, 'false_state' => 0, 'default' => 1, 'edit_field_class' => 'vc_col-sm-6 vc_column', ), // Data settings array( 'type' => 'woodmart_title_divider', 'holder' => 'div', 'title' => esc_html__( 'Data settings', 'woodmart' ), 'group' => esc_html__( 'Data Settings', 'woodmart' ), 'param_name' => 'data_tab_divider', ), array( 'type' => 'dropdown', 'heading' => esc_html__( 'Order by', 'woodmart' ), 'param_name' => 'orderby', 'value' => array( esc_html__( 'Date', 'woodmart' ) => 'date', esc_html__( 'Order by post ID', 'woodmart' ) => 'ID', esc_html__( 'Author', 'woodmart' ) => 'author', esc_html__( 'Title', 'woodmart' ) => 'title', esc_html__( 'Last modified date', 'woodmart' ) => 'modified', esc_html__( 'Post/page parent ID', 'woodmart' ) => 'parent', esc_html__( 'Number of comments', 'woodmart' ) => 'comment_count', esc_html__( 'Menu order/Page Order', 'woodmart' ) => 'menu_order', esc_html__( 'Meta value', 'woodmart' ) => 'meta_value', esc_html__( 'Meta value number', 'woodmart' ) => 'meta_value_num', esc_html__( 'Random order', 'woodmart' ) => 'rand', esc_html__( 'List of IDS', 'woodmart' ) => 'post__in', ), 'hint' => esc_html__( 'Select order type. If "Meta value" or "Meta value Number" is chosen then meta key is required.', 'woodmart' ), 'group' => esc_html__( 'Data Settings', 'woodmart' ), 'param_holder_class' => 'vc_grid-data-type-not-ids', 'edit_field_class' => 'vc_col-sm-6 vc_column', ), array( 'type' => 'dropdown', 'heading' => esc_html__( 'Sorting', 'woodmart' ), 'param_name' => 'order', 'group' => esc_html__( 'Data Settings', 'woodmart' ), 'value' => array( esc_html__( 'Descending', 'woodmart' ) => 'DESC', esc_html__( 'Ascending', 'woodmart' ) => 'ASC', ), 'param_holder_class' => 'vc_grid-data-type-not-ids', 'hint' => esc_html__( 'Select sorting order.', 'woodmart' ), 'edit_field_class' => 'vc_col-sm-6 vc_column', ), array( 'type' => 'textfield', 'heading' => esc_html__( 'Meta key', 'woodmart' ), 'param_name' => 'meta_key', 'hint' => esc_html__( 'Input meta key for grid ordering.', 'woodmart' ), 'group' => esc_html__( 'Data Settings', 'woodmart' ), 'param_holder_class' => 'vc_grid-data-type-not-ids', 'dependency' => array( 'element' => 'orderby', 'value' => array( 'meta_value', 'meta_value_num' ), ), 'edit_field_class' => 'vc_col-sm-6 vc_column', ), array( 'type' => 'textfield', 'heading' => esc_html__( 'Offset', 'woodmart' ), 'param_name' => 'offset', 'hint' => esc_html__( 'Number of grid elements to displace or pass over.', 'woodmart' ), 'group' => esc_html__( 'Data Settings', 'woodmart' ), 'param_holder_class' => 'vc_grid-data-type-not-ids', 'dependency' => array( 'element' => 'post_type', 'value_not_equal_to' => array( 'ids' ), ), 'edit_field_class' => 'vc_col-sm-6 vc_column', ), array( 'type' => 'autocomplete', 'heading' => esc_html__( 'Exclude', 'woodmart' ), 'param_name' => 'exclude', 'hint' => esc_html__( 'Exclude posts, pages, etc. by title.', 'woodmart' ), 'group' => esc_html__( 'Data Settings', 'woodmart' ), 'settings' => array( 'multiple' => true, ), 'param_holder_class' => 'vc_grid-data-type-not-ids', 'dependency' => array( 'element' => 'post_type', 'value_not_equal_to' => array( 'ids', 'related_posts' ), 'callback' => 'vc_grid_exclude_dependency_callback', ), 'edit_field_class' => 'vc_col-sm-6 vc_column', ), /** * Extra */ array( 'type' => 'woodmart_title_divider', 'holder' => 'div', 'title' => esc_html__( 'Extra options', 'woodmart' ), 'param_name' => 'extra_divider', ), array( 'type' => 'woodmart_switch', 'heading' => esc_html__( 'Lazy loading for images', 'woodmart' ), 'hint' => esc_html__( 'Enable lazy loading for images for this element.', 'woodmart' ), 'param_name' => 'lazy_loading', 'true_state' => 'yes', 'false_state' => 'no', 'default' => 'no', 'edit_field_class' => 'vc_col-sm-6 vc_column', ), array( 'type' => 'textfield', 'heading' => esc_html__( 'Extra class name', 'woodmart' ), 'param_name' => 'el_class', 'hint' => esc_html__( 'If you wish to style particular content element differently, then use this field to add a class name and then refer to it in your css file.', 'woodmart' ), ), array( 'type' => 'css_editor', 'heading' => esc_html__( 'CSS box', 'woodmart' ), 'param_name' => 'css', 'group' => esc_html__( 'Design Options', 'js_composer' ), ), woodmart_get_vc_responsive_spacing_map(), ), ); } } // Necessary hooks for blog autocomplete fields add_filter( 'vc_autocomplete_woodmart_blog_include_callback', 'vc_include_field_search', 10, 1 ); // Get suggestion(find). Must return an array add_filter( 'vc_autocomplete_woodmart_blog_include_render', 'vc_include_field_render', 10, 1 ); // Render exact product. Must return an array (label,value) // Narrow data taxonomies add_filter( 'vc_autocomplete_woodmart_blog_taxonomies_callback', 'vc_autocomplete_taxonomies_field_search', 10, 1 ); add_filter( 'vc_autocomplete_woodmart_blog_taxonomies_render', 'vc_autocomplete_taxonomies_field_render', 10, 1 ); // Narrow data taxonomies for exclude_filter add_filter( 'vc_autocomplete_woodmart_blog_exclude_filter_callback', 'vc_autocomplete_taxonomies_field_search', 10, 1 ); add_filter( 'vc_autocomplete_woodmart_blog_exclude_filter_render', 'vc_autocomplete_taxonomies_field_render', 10, 1 ); add_filter( 'vc_autocomplete_woodmart_blog_exclude_callback', 'vc_exclude_field_search', 10, 1 ); // Get suggestion(find). Must return an array add_filter( 'vc_autocomplete_woodmart_blog_exclude_render', 'vc_exclude_field_render', 10, 1 ); // Render exact product. Must return an array (label,value)
[-] categories.php
[edit]
[-] brands.php
[edit]
[-] page-heading.php
[edit]
[-] testimonials.php
[edit]
[-] image-hotspot.php
[edit]
[-] breadcrumbs.php
[edit]
[-] video.php
[edit]
[-] table.php
[edit]
[-] timeline.php
[edit]
[-] contact-form-7.php
[edit]
[-] product-filters.php
[edit]
[-] marquee.php
[edit]
[-] info-box.php
[edit]
[-] social.php
[edit]
[-] toggle.php
[edit]
[-] row-divider.php
[edit]
[-] title.php
[edit]
[-] images-gallery.php
[edit]
[-] responsive-text-block.php
[edit]
[-] image.php
[edit]
[-] team-member.php
[edit]
[-] accordion.php
[edit]
[-] parallax-scroll.php
[edit]
[-] size-guide.php
[edit]
[-] list.php
[edit]
[-] mailchimp.php
[edit]
[-] text-block.php
[edit]
[-] products-tabs.php
[edit]
[-] ajax-search.php
[edit]
[-] slider.php
[edit]
[-] menu-price.php
[edit]
[-] blog.php
[edit]
[-] popup.php
[edit]
[-] twitter.php
[edit]
[-] mega-menu.php
[edit]
[-] wishlist.php
[edit]
[-] products-widget.php
[edit]
[-] sidebar.php
[edit]
[-] instagram.php
[edit]
[-] compare.php
[edit]
[+]
..
[-] pricing-tables.php
[edit]
[-] video-poster.php
[edit]
[-] nested-carousel.php
[edit]
[-] compare-images.php
[edit]
[-] tabs.php
[edit]
[-] off-canvas-column-btn.php
[edit]
[-] 3d-view.php
[edit]
[-] google-map.php
[edit]
[-] html-block.php
[edit]
[-] countdown-timer.php
[edit]
[-] promo-banner.php
[edit]
[-] button.php
[edit]
[-] portfolio.php
[edit]
[-] products.php
[edit]
[-] extra-menu.php
[edit]
[-] register-maps.php
[edit]
[-] open-street-map.php
[edit]
[-] counter.php
[edit]
[-] author-area.php
[edit]