<?php
namespace ElementorPro\Modules\Woocommerce\Widgets;
use Elementor\Controls_Manager;
use Elementor\Core\Kits\Documents\Tabs\Global_Colors;
use Elementor\Core\Kits\Documents\Tabs\Global_Typography;
use Elementor\Group_Control_Border;
use Elementor\Group_Control_Typography;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
class Categories extends Base_Widget {
protected $_has_template_content = false;
public function get_name() {
return 'wc-categories';
}
public function get_title() {
return __( 'Product Categories', 'elementor-pro' );
}
public function get_icon() {
return 'eicon-product-categories';
}
public function get_keywords() {
return [ 'woocommerce-elements', 'shop', 'store', 'categories', 'product' ];
}
public function get_categories() {
return [
'woocommerce-elements',
];
}
protected function register_controls() {
$this->start_controls_section(
'section_layout',
[
'label' => __( 'Layout', 'elementor-pro' ),
'tab' => Controls_Manager::TAB_CONTENT,
]
);
$this->add_responsive_control(
'columns',
[
'label' => __( 'Columns', 'elementor-pro' ),
'type' => Controls_Manager::NUMBER,
'prefix_class' => 'elementor-products-columns%s-',
'default' => 4,
'min' => 1,
'max' => 12,
]
);
$this->add_control(
'number',
[
'label' => __( 'Categories Count', 'elementor-pro' ),
'type' => Controls_Manager::NUMBER,
'default' => '4',
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_filter',
[
'label' => __( 'Query', 'elementor-pro' ),
'tab' => Controls_Manager::TAB_CONTENT,
]
);
$this->add_control(
'source',
[
'label' => __( 'Source', 'elementor-pro' ),
'type' => Controls_Manager::SELECT,
'options' => [
'' => __( 'Show All', 'elementor-pro' ),
'by_id' => __( 'Manual Selection', 'elementor-pro' ),
'by_parent' => __( 'By Parent', 'elementor-pro' ),
'current_subcategories' => __( 'Current Subcategories', 'elementor-pro' ),
],
'label_block' => true,
]
);
$categories = get_terms( 'product_cat' );
$options = [];
foreach ( $categories as $category ) {
$options[ $category->term_id ] = $category->name;
}
$this->add_control(
'categories',
[
'label' => __( 'Categories', 'elementor-pro' ),
'type' => Controls_Manager::SELECT2,
'options' => $options,
'default' => [],
'label_block' => true,
'multiple' => true,
'condition' => [
'source' => 'by_id',
],
]
);
$parent_options = [ '0' => __( 'Only Top Level', 'elementor-pro' ) ] + $options;
$this->add_control(
'parent',
[
'label' => __( 'Parent', 'elementor-pro' ),
'type' => Controls_Manager::SELECT,
'default' => '0',
'options' => $parent_options,
'condition' => [
'source' => 'by_parent',
],
]
);
$this->add_control(
'hide_empty',
[
'label' => __( 'Hide Empty', 'elementor-pro' ),
'type' => Controls_Manager::SWITCHER,
'default' => '',
'label_on' => 'Hide',
'label_off' => 'Show',
]
);
$this->add_control(
'orderby',
[
'label' => __( 'Order By', 'elementor-pro' ),
'type' => Controls_Manager::SELECT,
'default' => 'name',
'options' => [
'name' => __( 'Name', 'elementor-pro' ),
'slug' => __( 'Slug', 'elementor-pro' ),
'description' => __( 'Description', 'elementor-pro' ),
'count' => __( 'Count', 'elementor-pro' ),
],
]
);
$this->add_control(
'order',
[
'label' => __( 'Order', 'elementor-pro' ),
'type' => Controls_Manager::SELECT,
'default' => 'desc',
'options' => [
'asc' => __( 'ASC', 'elementor-pro' ),
'desc' => __( 'DESC', 'elementor-pro' ),
],
]
);
$this->end_controls_section();
$this->start_controls_section(
'section_products_style',
[
'label' => __( 'Products', 'elementor-pro' ),
'tab' => Controls_Manager::TAB_STYLE,
]
);
$this->add_control(
'wc_style_warning',
[
'type' => Controls_Manager::RAW_HTML,
'raw' => __( 'The style of this widget is often affected by your theme and plugins. If you experience any such issue, try to switch to a basic theme and deactivate related plugins.', 'elementor-pro' ),
'content_classes' => 'elementor-panel-alert elementor-panel-alert-info',
]
);
$this->add_control(
'products_class',
[
'type' => Controls_Manager::HIDDEN,
'default' => 'wc-products',
'prefix_class' => 'elementor-products-grid elementor-',
]
);
$this->add_control(
'column_gap',
[
'label' => __( 'Columns Gap', 'elementor-pro' ),
'type' => Controls_Manager::SLIDER,
'default' => [
'size' => 20,
],
'range' => [
'px' => [
'min' => 0,
'max' => 100,
],
],
'selectors' => [
'{{WRAPPER}}.elementor-wc-products ul.products' => 'grid-column-gap: {{SIZE}}{{UNIT}}',
],
]
);
$this->add_control(
'row_gap',
[
'label' => __( 'Rows Gap', 'elementor-pro' ),
'type' => Controls_Manager::SLIDER,
'default' => [
'size' => 40,
],
'range' => [
'px' => [
'min' => 0,
'max' => 100,
],
],
'selectors' => [
'{{WRAPPER}}.elementor-wc-products ul.products' => 'grid-row-gap: {{SIZE}}{{UNIT}}',
],
]
);
$this->add_responsive_control(
'align',
[
'label' => __( 'Alignment', 'elementor-pro' ),
'type' => Controls_Manager::CHOOSE,
'options' => [
'left' => [
'title' => __( 'Left', 'elementor-pro' ),
'icon' => 'eicon-text-align-left',
],
'center' => [
'title' => __( 'Center', 'elementor-pro' ),
'icon' => 'eicon-text-align-center',
],
'right' => [
'title' => __( 'Right', 'elementor-pro' ),
'icon' => 'eicon-text-align-right',
],
],
'prefix_class' => 'elementor-product-loop-item--align-',
'selectors' => [
'{{WRAPPER}} .product' => 'text-align: {{VALUE}}',
],
]
);
$this->add_control(
'heading_image_style',
[
'label' => __( 'Image', 'elementor-pro' ),
'type' => Controls_Manager::HEADING,
'separator' => 'before',
]
);
$this->add_group_control(
Group_Control_Border::get_type(),
[
'name' => 'image_border',
'selector' => '{{WRAPPER}} a > img',
]
);
$this->add_responsive_control(
'image_border_radius',
[
'label' => __( 'Border Radius', 'elementor-pro' ),
'type' => Controls_Manager::DIMENSIONS,
'size_units' => [ 'px', '%' ],
'selectors' => [
'{{WRAPPER}} a > img' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}',
],
]
);
$this->add_responsive_control(
'image_spacing',
[
'label' => __( 'Spacing', 'elementor-pro' ),
'type' => Controls_Manager::SLIDER,
'size_units' => [ 'px', 'em' ],
'selectors' => [
'{{WRAPPER}} a > img' => 'margin-bottom: {{SIZE}}{{UNIT}}',
],
]
);
$this->add_control(
'heading_title_style',
[
'label' => __( 'Title', 'elementor-pro' ),
'type' => Controls_Manager::HEADING,
'separator' => 'before',
]
);
$this->add_control(
'title_color',
[
'label' => __( 'Color', 'elementor-pro' ),
'type' => Controls_Manager::COLOR,
'global' => [
'default' => Global_Colors::COLOR_PRIMARY,
],
'selectors' => [
'{{WRAPPER}} .woocommerce .woocommerce-loop-category__title' => 'color: {{VALUE}}',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'title_typography',
'global' => [
'default' => Global_Typography::TYPOGRAPHY_PRIMARY,
],
'selector' => '{{WRAPPER}} .woocommerce .woocommerce-loop-category__title',
]
);
$this->add_control(
'heading_count_style',
[
'label' => __( 'Count', 'elementor-pro' ),
'type' => Controls_Manager::HEADING,
'separator' => 'before',
]
);
$this->add_control(
'count_color',
[
'label' => __( 'Color', 'elementor-pro' ),
'type' => Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .woocommerce-loop-category__title .count' => 'color: {{VALUE}}',
],
]
);
$this->add_group_control(
Group_Control_Typography::get_type(),
[
'name' => 'count_typography',
'global' => [
'default' => Global_Typography::TYPOGRAPHY_PRIMARY,
],
'selector' => '{{WRAPPER}} .woocommerce-loop-category__title .count',
]
);
$this->end_controls_section();
}
private function get_shortcode() {
$settings = $this->get_settings();
$attributes = [
'number' => $settings['number'],
'columns' => $settings['columns'],
'hide_empty' => ( 'yes' === $settings['hide_empty'] ) ? 1 : 0,
'orderby' => $settings['orderby'],
'order' => $settings['order'],
];
if ( 'by_id' === $settings['source'] ) {
$attributes['ids'] = implode( ',', $settings['categories'] );
} elseif ( 'by_parent' === $settings['source'] ) {
$attributes['parent'] = $settings['parent'];
} elseif ( 'current_subcategories' === $settings['source'] ) {
$attributes['parent'] = get_queried_object_id();
}
$this->add_render_attribute( 'shortcode', $attributes );
$shortcode = sprintf( '[product_categories %s]', $this->get_render_attribute_string( 'shortcode' ) );
return $shortcode;
}
public function render() {
echo do_shortcode( $this->get_shortcode() );
}
public function render_plain_content() {
echo $this->get_shortcode();
}
}