upgraded to 4.14
This commit is contained in:
@ -10,6 +10,8 @@
|
||||
* @since 3.29
|
||||
*/
|
||||
|
||||
defined( 'ABSPATH' ) || exit;
|
||||
|
||||
/**
|
||||
* Class representing WooCommerce Add to cart component.
|
||||
*/
|
||||
@ -18,10 +20,11 @@ class ET_Builder_Module_Woocommerce_Add_To_Cart extends ET_Builder_Module {
|
||||
* Initialize.
|
||||
*/
|
||||
public function init() {
|
||||
$this->name = esc_html__( 'Woo Add To Cart', 'et_builder' );
|
||||
$this->plural = esc_html__( 'Woo Add To Cart', 'et_builder' );
|
||||
$this->slug = 'et_pb_wc_add_to_cart';
|
||||
$this->vb_support = 'on';
|
||||
$this->name = esc_html__( 'Woo Product Add To Cart', 'et_builder' );
|
||||
$this->plural = esc_html__( 'Woo Product Add To Cart', 'et_builder' );
|
||||
$this->slug = 'et_pb_wc_add_to_cart';
|
||||
$this->vb_support = 'on';
|
||||
$this->folder_name = 'et_pb_woo_modules';
|
||||
|
||||
$this->settings_modal_toggles = array(
|
||||
'general' => array(
|
||||
@ -32,11 +35,10 @@ class ET_Builder_Module_Woocommerce_Add_To_Cart extends ET_Builder_Module {
|
||||
),
|
||||
'advanced' => array(
|
||||
'toggles' => array(
|
||||
'text' => array(
|
||||
'title' => et_builder_i18n( 'Text' ),
|
||||
'priority' => 45,
|
||||
'field_label' => array(
|
||||
'title' => esc_html__( 'Field Labels', 'et_builder' ),
|
||||
),
|
||||
'header' => array(
|
||||
'header' => array(
|
||||
'title' => esc_html__( 'Heading Text', 'et_builder' ),
|
||||
'priority' => 49,
|
||||
'tabbed_subtoggles' => true,
|
||||
@ -67,7 +69,7 @@ class ET_Builder_Module_Woocommerce_Add_To_Cart extends ET_Builder_Module {
|
||||
),
|
||||
),
|
||||
),
|
||||
'width' => array(
|
||||
'width' => array(
|
||||
'title' => et_builder_i18n( 'Sizing' ),
|
||||
'priority' => 80,
|
||||
),
|
||||
@ -77,23 +79,23 @@ class ET_Builder_Module_Woocommerce_Add_To_Cart extends ET_Builder_Module {
|
||||
|
||||
$this->advanced_fields = array(
|
||||
'fonts' => array(
|
||||
'body' => array(
|
||||
'label' => et_builder_i18n( 'Text' ),
|
||||
'css' => array(
|
||||
'main' => '%%order_class%%, %%order_class%% a, %%order_class%% label, %%order_class%%.et_pb_module .et_pb_module_inner .stock',
|
||||
'important' => 'all',
|
||||
'field_label' => array(
|
||||
'label' => esc_html__( 'Field Labels', 'et_builder' ),
|
||||
'css' => array(
|
||||
'main' => implode(
|
||||
',',
|
||||
array(
|
||||
'%%order_class%% label',
|
||||
)
|
||||
),
|
||||
),
|
||||
'font_size' => array(
|
||||
'default' => '14px',
|
||||
),
|
||||
'line_height' => array(
|
||||
'default' => '1.3em',
|
||||
),
|
||||
'hide_text_align' => true,
|
||||
'toggle_slug' => 'text',
|
||||
'font' => array(
|
||||
'font' => array(
|
||||
'default' => '|700|||||||',
|
||||
),
|
||||
'font_size' => array(
|
||||
'default' => '14px',
|
||||
),
|
||||
'toggle_slug' => 'field_label',
|
||||
),
|
||||
),
|
||||
'background' => array(
|
||||
@ -107,21 +109,17 @@ class ET_Builder_Module_Woocommerce_Add_To_Cart extends ET_Builder_Module {
|
||||
),
|
||||
),
|
||||
'text' => array(
|
||||
'use_background_layout' => true,
|
||||
'use_background_layout' => false,
|
||||
'css' => array(
|
||||
'main' => '%%order_class%% td.label',
|
||||
'text_shadow' => '%%order_class%% td.label',
|
||||
),
|
||||
'options' => array(
|
||||
'text_orientation' => array(
|
||||
'text_orientation' => array(
|
||||
'default' => 'left',
|
||||
),
|
||||
'background_layout' => array(
|
||||
'default' => 'light',
|
||||
'hover' => 'tabs',
|
||||
),
|
||||
),
|
||||
),
|
||||
'text_shadow' => array(
|
||||
// Don't add text-shadow fields since they already are via font-options.
|
||||
'default' => false,
|
||||
),
|
||||
'button' => array(
|
||||
'button' => array(
|
||||
'label' => et_builder_i18n( 'Button' ),
|
||||
@ -343,7 +341,7 @@ class ET_Builder_Module_Woocommerce_Add_To_Cart extends ET_Builder_Module {
|
||||
*/
|
||||
public function get_fields() {
|
||||
$fields = array(
|
||||
'product' => ET_Builder_Module_Helper_Woocommerce_Modules::get_field(
|
||||
'product' => ET_Builder_Module_Helper_Woocommerce_Modules::get_field(
|
||||
'product',
|
||||
array(
|
||||
'default' => ET_Builder_Module_Helper_Woocommerce_Modules::get_product_default(),
|
||||
@ -352,7 +350,7 @@ class ET_Builder_Module_Woocommerce_Add_To_Cart extends ET_Builder_Module {
|
||||
),
|
||||
)
|
||||
),
|
||||
'product_filter' => ET_Builder_Module_Helper_Woocommerce_Modules::get_field(
|
||||
'product_filter' => ET_Builder_Module_Helper_Woocommerce_Modules::get_field(
|
||||
'product_filter',
|
||||
array(
|
||||
'computed_affects' => array(
|
||||
@ -360,7 +358,7 @@ class ET_Builder_Module_Woocommerce_Add_To_Cart extends ET_Builder_Module {
|
||||
),
|
||||
)
|
||||
),
|
||||
'show_quantity' => array(
|
||||
'show_quantity' => array(
|
||||
'label' => esc_html__( 'Show Quantity Field', 'et_builder' ),
|
||||
'type' => 'yes_no_button',
|
||||
'option_category' => 'configuration',
|
||||
@ -374,7 +372,7 @@ class ET_Builder_Module_Woocommerce_Add_To_Cart extends ET_Builder_Module {
|
||||
'mobile_options' => true,
|
||||
'hover' => 'tabs',
|
||||
),
|
||||
'show_stock' => array(
|
||||
'show_stock' => array(
|
||||
'label' => esc_html__( 'Show Stock', 'et_builder' ),
|
||||
'type' => 'yes_no_button',
|
||||
'option_category' => 'configuration',
|
||||
@ -388,7 +386,22 @@ class ET_Builder_Module_Woocommerce_Add_To_Cart extends ET_Builder_Module {
|
||||
'mobile_options' => true,
|
||||
'hover' => 'tabs',
|
||||
),
|
||||
'__add_to_cart' => array(
|
||||
'field_label_position' => array(
|
||||
'label' => esc_html__( 'Fields Label Position', 'et_builder' ),
|
||||
'description' => esc_html__( 'Set the position of the field labels.', 'et_builder' ),
|
||||
'type' => 'select',
|
||||
'option_category' => 'configuration',
|
||||
'options' => array(
|
||||
'inline' => __( 'Inline', 'et_builder' ),
|
||||
'stacked' => __( 'Stacked', 'et_builder' ),
|
||||
),
|
||||
'default' => 'default',
|
||||
'tab_slug' => 'advanced',
|
||||
'toggle_slug' => 'field_label',
|
||||
'mobile_options' => true,
|
||||
'priority' => 15,
|
||||
),
|
||||
'__add_to_cart' => array(
|
||||
'type' => 'computed',
|
||||
'computed_callback' => array(
|
||||
'ET_Builder_Module_Woocommerce_Add_To_Cart',
|
||||
@ -407,22 +420,75 @@ class ET_Builder_Module_Woocommerce_Add_To_Cart extends ET_Builder_Module {
|
||||
return $fields;
|
||||
}
|
||||
|
||||
/**
|
||||
* Replaces the Add to Cart form's action.
|
||||
*
|
||||
* @since 4.14.0
|
||||
*
|
||||
* @param string $permalink Permalink.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public static function replace_add_to_cart_form_action( $permalink ) {
|
||||
$the_id = et_core_page_resource_get_the_ID();
|
||||
if ( 0 === absint( et_core_page_resource_get_the_ID() ) ) {
|
||||
return $permalink;
|
||||
}
|
||||
|
||||
$link = get_permalink( $the_id );
|
||||
|
||||
// Validate if Post exists.
|
||||
return $link ? $link : $permalink;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get add to cart markup as string
|
||||
*
|
||||
* @since 4.14.0 Update Add to Cart Form action {@see https://github.com/elegantthemes/Divi/issues/16682}
|
||||
*
|
||||
* @since 4.4.0 Fixed compatibility w/ WooCommerce Product Add-ons
|
||||
* @see https://github.com/elegantthemes/Divi/issues/19116
|
||||
*
|
||||
* @param array $args Additional arguments.
|
||||
* @param array $args Arguments from Computed Prop AJAX call.
|
||||
* @param array $conditional_tags Conditional Tags.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public static function get_add_to_cart( $args = array() ) {
|
||||
return et_builder_wc_render_module_template(
|
||||
public static function get_add_to_cart( $args = array(), $conditional_tags = array() ) {
|
||||
$is_tb = 'true' === et_()->array_get( $conditional_tags, 'is_tb', 'false' );
|
||||
$is_bfb = 'true' === et_()->array_get( $conditional_tags, 'is_bfb', 'false' );
|
||||
$is_bfb_activated = 'true' === et_()->array_get( $conditional_tags, 'is_bfb_activated', 'false' );
|
||||
$is_builder = $is_tb || $is_bfb || $is_bfb_activated;
|
||||
|
||||
if ( ! $is_builder ) {
|
||||
add_filter(
|
||||
'woocommerce_add_to_cart_form_action',
|
||||
array(
|
||||
'ET_Builder_Module_Woocommerce_Add_To_Cart',
|
||||
// phpcs:ignore WordPress.Arrays.CommaAfterArrayItem.NoComma -- This is a function call.
|
||||
'replace_add_to_cart_form_action'
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
$output = et_builder_wc_render_module_template(
|
||||
'woocommerce_template_single_add_to_cart',
|
||||
$args,
|
||||
array( 'product', 'post' )
|
||||
);
|
||||
|
||||
if ( ! $is_builder ) {
|
||||
remove_filter(
|
||||
'woocommerce_add_to_cart_form_action',
|
||||
array(
|
||||
'ET_Builder_Module_Woocommerce_Add_To_Cart',
|
||||
// phpcs:ignore WordPress.Arrays.CommaAfterArrayItem.NoComma -- This is a function call.
|
||||
'replace_add_to_cart_form_action'
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
return $output;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -452,12 +518,18 @@ class ET_Builder_Module_Woocommerce_Add_To_Cart extends ET_Builder_Module {
|
||||
$multi_view_attrs = $multi_view->render_attrs(
|
||||
array(
|
||||
'classes' => array(
|
||||
'et_pb_hide_input_quantity' => array(
|
||||
'et_pb_hide_input_quantity' => array(
|
||||
'show_quantity' => 'off',
|
||||
),
|
||||
'et_pb_hide_stock' => array(
|
||||
'et_pb_hide_stock' => array(
|
||||
'show_stock' => 'off',
|
||||
),
|
||||
'et_pb_fields_label_position_inline' => array(
|
||||
'field_label_position' => 'inline',
|
||||
),
|
||||
'et_pb_fields_label_position_stacked' => array(
|
||||
'field_label_position' => 'stacked',
|
||||
),
|
||||
),
|
||||
),
|
||||
false,
|
||||
@ -562,6 +634,9 @@ class ET_Builder_Module_Woocommerce_Add_To_Cart extends ET_Builder_Module {
|
||||
$this->add_classname( 'et_pb_with_focus_border' );
|
||||
}
|
||||
|
||||
$fields_label_position = et_()->array_get( $this->props, 'field_label_position', 'inline' );
|
||||
$this->add_classname( "et_pb_fields_label_position_{$fields_label_position}" );
|
||||
|
||||
ET_Builder_Module_Helper_Woocommerce_Modules::process_background_layout_data( $render_slug, $this );
|
||||
ET_Builder_Module_Helper_Woocommerce_Modules::process_custom_button_icons( $render_slug, $this );
|
||||
|
||||
|
@ -10,6 +10,8 @@
|
||||
* @since 3.29
|
||||
*/
|
||||
|
||||
defined( 'ABSPATH' ) || exit;
|
||||
|
||||
/**
|
||||
* Class representing WooCommerce Additional Info component.
|
||||
*/
|
||||
@ -20,10 +22,11 @@ class ET_Builder_Module_Woocommerce_Additional_Info extends ET_Builder_Module {
|
||||
* @since 4.0.6 Implemented Attribute Row, Title and Body Custom CSS fields.
|
||||
*/
|
||||
public function init() {
|
||||
$this->name = esc_html__( 'Woo Additional Info', 'et_builder' );
|
||||
$this->plural = esc_html__( 'Woo Additional Info', 'et_builder' );
|
||||
$this->slug = 'et_pb_wc_additional_info';
|
||||
$this->vb_support = 'on';
|
||||
$this->name = esc_html__( 'Woo Product Information', 'et_builder' );
|
||||
$this->plural = esc_html__( 'Woo Product Information', 'et_builder' );
|
||||
$this->slug = 'et_pb_wc_additional_info';
|
||||
$this->vb_support = 'on';
|
||||
$this->folder_name = 'et_pb_woo_modules';
|
||||
|
||||
$this->settings_modal_toggles = array(
|
||||
'general' => array(
|
||||
@ -34,7 +37,7 @@ class ET_Builder_Module_Woocommerce_Additional_Info extends ET_Builder_Module {
|
||||
),
|
||||
'advanced' => array(
|
||||
'toggles' => array(
|
||||
'text' => array(
|
||||
'text' => array(
|
||||
'title' => et_builder_i18n( 'Text' ),
|
||||
'priority' => 45,
|
||||
'tabbed_subtoggles' => true,
|
||||
@ -50,9 +53,21 @@ class ET_Builder_Module_Woocommerce_Additional_Info extends ET_Builder_Module {
|
||||
),
|
||||
),
|
||||
),
|
||||
'header' => array(
|
||||
'header' => array(
|
||||
'title' => esc_html__( 'Title Text', 'et_builder' ),
|
||||
),
|
||||
'table' => array(
|
||||
'title' => esc_html__( 'Table', 'et_builder' ),
|
||||
'priority' => 70,
|
||||
),
|
||||
'table_row' => array(
|
||||
'title' => esc_html__( 'Table Row', 'et_builder' ),
|
||||
'priority' => 75,
|
||||
),
|
||||
'table_cell' => array(
|
||||
'title' => esc_html__( 'Table Cell', 'et_builder' ),
|
||||
'priority' => 80,
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
@ -155,6 +170,211 @@ class ET_Builder_Module_Woocommerce_Additional_Info extends ET_Builder_Module {
|
||||
'default' => false,
|
||||
),
|
||||
'button' => false,
|
||||
'form_field' => array(
|
||||
'table' => array(
|
||||
'label' => esc_html__( 'Table', 'et_builder' ),
|
||||
'css' => array(
|
||||
'main' => '%%order_class%% table.shop_attributes',
|
||||
),
|
||||
'font_field' => false,
|
||||
'margin_padding' => array(
|
||||
'css' => array(
|
||||
'main' => '%%order_class%% table.shop_attributes',
|
||||
),
|
||||
'use_padding' => false,
|
||||
),
|
||||
'text_color' => false,
|
||||
'focus_background_color' => false,
|
||||
'focus_text_color' => false,
|
||||
'border_styles' => array(
|
||||
'table' => array(
|
||||
'label_prefix' => 'Table',
|
||||
'css' => array(
|
||||
'main' => array(
|
||||
'border_styles' => '%%order_class%% table.shop_attributes',
|
||||
'border_radii' => '%%order_class%% table.shop_attributes',
|
||||
),
|
||||
),
|
||||
'use_focus_borders' => false,
|
||||
'defaults' => array(
|
||||
'border_radii' => 'on|0px|0px|0px|0px',
|
||||
'border_styles' => array(
|
||||
'width' => '0px',
|
||||
'style' => 'dotted',
|
||||
),
|
||||
'composite' => array(
|
||||
'border_top' => array(
|
||||
'border_width_top' => '1px',
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
'box_shadow' => array(
|
||||
'css' => array(
|
||||
'main' => '%%order_class%% table.shop_attributes',
|
||||
),
|
||||
),
|
||||
),
|
||||
'table_row' => array(
|
||||
'label' => esc_html__( 'Table Row', 'et_builder' ),
|
||||
'css' => array(
|
||||
'main' => '%%order_class%% table.shop_attributes tr',
|
||||
),
|
||||
'font_field' => false,
|
||||
'margin_padding' => array(
|
||||
'css' => array(
|
||||
'main' => '%%order_class%% table.shop_attributes tr th, %%order_class%% table.shop_attributes tr td',
|
||||
),
|
||||
'use_margin' => false,
|
||||
),
|
||||
'text_color' => false,
|
||||
'focus_background_color' => false,
|
||||
'focus_text_color' => false,
|
||||
'border_styles' => array(
|
||||
'table_row' => array(
|
||||
'label_prefix' => 'Table Row',
|
||||
'css' => array(
|
||||
'main' => array(
|
||||
// Accepts only string and not array. Hence using `implode`.
|
||||
'border_radii' => implode(
|
||||
', ',
|
||||
array(
|
||||
'%%order_class%% table.shop_attributes th',
|
||||
'%%order_class%% table.shop_attributes td',
|
||||
)
|
||||
),
|
||||
'border_styles' => implode(
|
||||
', ',
|
||||
array(
|
||||
'%%order_class%% table.shop_attributes th',
|
||||
'%%order_class%% table.shop_attributes td',
|
||||
)
|
||||
),
|
||||
),
|
||||
'important' => true,
|
||||
),
|
||||
'use_focus_borders' => false,
|
||||
'defaults' => array(
|
||||
'border_radii' => 'on|0px|0px|0px|0px',
|
||||
'border_styles' => array(
|
||||
'width' => '1px',
|
||||
'style' => 'dotted',
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
'box_shadow' => array(
|
||||
'css' => array(
|
||||
'main' => '%%order_class%% table.shop_attributes tr',
|
||||
),
|
||||
),
|
||||
),
|
||||
'table_row' => array(
|
||||
'label' => esc_html__( 'Table Row', 'et_builder' ),
|
||||
'css' => array(
|
||||
'main' => '%%order_class%% table.shop_attributes tr',
|
||||
),
|
||||
'font_field' => false,
|
||||
'margin_padding' => array(
|
||||
'css' => array(
|
||||
'main' => '%%order_class%% table.shop_attributes tr th, %%order_class%% table.shop_attributes tr td',
|
||||
),
|
||||
'use_margin' => false,
|
||||
),
|
||||
'text_color' => false,
|
||||
'focus_background_color' => false,
|
||||
'focus_text_color' => false,
|
||||
'border_styles' => array(
|
||||
'table_row' => array(
|
||||
'label_prefix' => 'Table Row',
|
||||
'css' => array(
|
||||
'main' => array(
|
||||
// Accepts only string and not array. Hence using `implode`.
|
||||
'border_radii' => implode(
|
||||
', ',
|
||||
array(
|
||||
'%%order_class%% table.shop_attributes th',
|
||||
'%%order_class%% table.shop_attributes td',
|
||||
)
|
||||
),
|
||||
'border_styles' => implode(
|
||||
', ',
|
||||
array(
|
||||
'%%order_class%% table.shop_attributes th',
|
||||
'%%order_class%% table.shop_attributes td',
|
||||
)
|
||||
),
|
||||
),
|
||||
),
|
||||
'use_focus_borders' => false,
|
||||
'defaults' => array(
|
||||
'border_radii' => 'on|0px|0px|0px|0px',
|
||||
'border_styles' => array(
|
||||
'width' => '1px',
|
||||
'style' => 'dotted',
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
'box_shadow' => array(
|
||||
'css' => array(
|
||||
'main' => '%%order_class%% table.shop_attributes tr',
|
||||
),
|
||||
),
|
||||
),
|
||||
'table_cell' => array(
|
||||
'label' => esc_html__( 'Table Cell', 'et_builder' ),
|
||||
'css' => array(
|
||||
'main' => '%%order_class%% table.shop_attributes tr th, %%order_class%% table.shop_attributes tr td',
|
||||
),
|
||||
'font_field' => false,
|
||||
'margin_padding' => array(
|
||||
'css' => array(
|
||||
'main' => implode(
|
||||
', ',
|
||||
array(
|
||||
'%%order_class%% table.shop_attributes tr th',
|
||||
'%%order_class%% table.shop_attributes tr td',
|
||||
)
|
||||
),
|
||||
),
|
||||
'use_margin' => false,
|
||||
),
|
||||
'text_color' => false,
|
||||
'focus_background_color' => false,
|
||||
'focus_text_color' => false,
|
||||
'border_styles' => array(
|
||||
'table_cell' => array(
|
||||
'label_prefix' => 'Table Cell',
|
||||
'css' => array(
|
||||
'main' => array(
|
||||
'border_styles' => '%%order_class%% table.shop_attributes tr th,%%order_class%% table.shop_attributes tr td',
|
||||
'border_radii' => '%%order_class%% table.shop_attributes tr th, %%order_class%% table.shop_attributes tr td',
|
||||
),
|
||||
),
|
||||
'use_focus_borders' => false,
|
||||
'defaults' => array(
|
||||
'border_radii' => 'on|0px|0px|0px|0px',
|
||||
'border_styles' => array(
|
||||
'width' => '1px',
|
||||
'style' => 'dotted',
|
||||
),
|
||||
'composite' => array(
|
||||
'border_top' => array(
|
||||
'border_width_top' => '1px',
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
'box_shadow' => array(
|
||||
'css' => array(
|
||||
'main' => '%%order_class%% table.shop_attributes tr th, %%order_class%% table.shop_attributes td',
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
$this->custom_css_fields = array(
|
||||
@ -332,6 +552,24 @@ class ET_Builder_Module_Woocommerce_Additional_Info extends ET_Builder_Module {
|
||||
|
||||
add_filter( "et_builder_module_{$render_slug}_outer_wrapper_attrs", array( $this, 'add_multi_view_attrs' ), 10, 2 );
|
||||
|
||||
$table_row_bg_color = et_()->array_get( $this->props, 'table_row_background_color', '' );
|
||||
|
||||
if ( ! empty( $table_row_bg_color ) ) {
|
||||
ET_Builder_Element::set_style(
|
||||
$render_slug,
|
||||
array(
|
||||
'selector' => implode(
|
||||
',',
|
||||
array(
|
||||
'%%order_class%% table.shop_attributes tr:nth-child(even) th',
|
||||
'%%order_class%% table.shop_attributes tr:nth-child(even) td',
|
||||
)
|
||||
),
|
||||
'declaration' => 'background: inherit',
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
$output = self::get_additional_info( $this->props );
|
||||
|
||||
// Render empty string if no output is generated to avoid unwanted vertical space.
|
||||
|
@ -10,6 +10,8 @@
|
||||
* @since 3.29
|
||||
*/
|
||||
|
||||
defined( 'ABSPATH' ) || exit;
|
||||
|
||||
/**
|
||||
* Class representing WooCommerce Breadcrumb component.
|
||||
*/
|
||||
@ -25,10 +27,11 @@ class ET_Builder_Module_Woocommerce_Breadcrumb extends ET_Builder_Module {
|
||||
* Initialize.
|
||||
*/
|
||||
public function init() {
|
||||
$this->name = esc_html__( 'Woo Breadcrumb', 'et_builder' );
|
||||
$this->name = esc_html__( 'Woo Breadcrumbs', 'et_builder' );
|
||||
$this->plural = esc_html__( 'Woo Breadcrumbs', 'et_builder' );
|
||||
$this->slug = 'et_pb_wc_breadcrumb';
|
||||
$this->vb_support = 'on';
|
||||
$this->folder_name = 'et_pb_woo_modules';
|
||||
$this->main_css_element = '%%order_class%% .woocommerce-breadcrumb';
|
||||
|
||||
$this->settings_modal_toggles = array(
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -10,6 +10,8 @@
|
||||
* @since 3.29
|
||||
*/
|
||||
|
||||
defined( 'ABSPATH' ) || exit;
|
||||
|
||||
/**
|
||||
* Class representing WooCommerce Description component.
|
||||
*/
|
||||
@ -20,10 +22,11 @@ class ET_Builder_Module_Woocommerce_Description extends ET_Builder_Module {
|
||||
* @since 4.0.6 Updated `toggle_slug` to avoid empty Tabs in Text OG.
|
||||
*/
|
||||
public function init() {
|
||||
$this->name = esc_html__( 'Woo Description', 'et_builder' );
|
||||
$this->plural = esc_html__( 'Woo Descriptions', 'et_builder' );
|
||||
$this->slug = 'et_pb_wc_description';
|
||||
$this->vb_support = 'on';
|
||||
$this->name = esc_html__( 'Woo Product Description', 'et_builder' );
|
||||
$this->plural = esc_html__( 'Woo Product Description', 'et_builder' );
|
||||
$this->slug = 'et_pb_wc_description';
|
||||
$this->vb_support = 'on';
|
||||
$this->folder_name = 'et_pb_woo_modules';
|
||||
|
||||
$this->settings_modal_toggles = array(
|
||||
'general' => array(
|
||||
|
@ -10,6 +10,8 @@
|
||||
* @since 3.29
|
||||
*/
|
||||
|
||||
defined( 'ABSPATH' ) || exit;
|
||||
|
||||
if ( ! class_exists( 'ET_Builder_Module_Gallery' ) ) {
|
||||
require_once ET_BUILDER_DIR_RESOLVED_PATH . '/module/Gallery.php';
|
||||
}
|
||||
@ -26,9 +28,10 @@ class ET_Builder_Module_Woocommerce_Gallery extends ET_Builder_Module_Gallery {
|
||||
public function init() {
|
||||
parent::init();
|
||||
|
||||
$this->name = esc_html__( 'Woo Gallery', 'et_builder' );
|
||||
$this->plural = esc_html__( 'Woo Galleries', 'et_builder' );
|
||||
$this->name = esc_html__( 'Woo Product Gallery', 'et_builder' );
|
||||
$this->plural = esc_html__( 'Woo Product Gallery', 'et_builder' );
|
||||
$this->slug = 'et_pb_wc_gallery';
|
||||
$this->folder_name = 'et_pb_woo_modules';
|
||||
$this->main_css_element = '%%order_class%%';
|
||||
|
||||
// Intentionally removing inherited options group.
|
||||
|
@ -10,6 +10,8 @@
|
||||
* @since 3.29
|
||||
*/
|
||||
|
||||
defined( 'ABSPATH' ) || exit;
|
||||
|
||||
/**
|
||||
* Class representing WooCommerce Images component.
|
||||
*/
|
||||
@ -18,9 +20,11 @@ class ET_Builder_Module_Woocommerce_Images extends ET_Builder_Module {
|
||||
* Initialize.
|
||||
*/
|
||||
public function init() {
|
||||
$this->name = esc_html__( 'Woo Images', 'et_builder' );
|
||||
$this->slug = 'et_pb_wc_images';
|
||||
$this->vb_support = 'on';
|
||||
$this->name = esc_html__( 'Woo Product Images', 'et_builder' );
|
||||
$this->plural = esc_html__( 'Woo Product Images', 'et_builder' );
|
||||
$this->slug = 'et_pb_wc_images';
|
||||
$this->vb_support = 'on';
|
||||
$this->folder_name = 'et_pb_woo_modules';
|
||||
|
||||
$this->settings_modal_toggles = array(
|
||||
'general' => array(
|
||||
@ -32,14 +36,15 @@ class ET_Builder_Module_Woocommerce_Images extends ET_Builder_Module {
|
||||
'advanced' => array(
|
||||
'toggles' => array(
|
||||
'image' => et_builder_i18n( 'Image' ),
|
||||
'sale_badge' => esc_html__( 'Sale Badge Text', 'et_builder' ),
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
$this->advanced_fields = array(
|
||||
'borders' => array(
|
||||
'default' => array(),
|
||||
'image' => array(
|
||||
'default' => array(),
|
||||
'image' => array(
|
||||
'css' => array(
|
||||
'main' => array(
|
||||
'border_radii' => '%%order_class%% div.images ol.flex-control-thumbs.flex-control-nav li, %%order_class%% .flex-viewport, %%order_class%% .woocommerce-product-gallery--without-images .woocommerce-product-gallery__wrapper, %%order_class%% .woocommerce-product-gallery > div:not(.flex-viewport) .woocommerce-product-gallery__image, %%order_class%% .woocommerce-product-gallery > .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image, %%order_class%% .woocommerce-product-gallery .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image',
|
||||
@ -50,10 +55,25 @@ class ET_Builder_Module_Woocommerce_Images extends ET_Builder_Module {
|
||||
'tab_slug' => 'advanced',
|
||||
'toggle_slug' => 'image',
|
||||
),
|
||||
'sale_badge' => array(
|
||||
'css' => array(
|
||||
'main' => array(
|
||||
'border_radii' => '%%order_class%% span.onsale',
|
||||
'border_styles' => '%%order_class%% span.onsale',
|
||||
),
|
||||
'important' => true,
|
||||
),
|
||||
'defaults' => array(
|
||||
'border_radii' => 'on|3px|3px|3px|3px',
|
||||
),
|
||||
'label_prefix' => esc_html__( 'Sale Badge', 'et_builder' ),
|
||||
'tab_slug' => 'advanced',
|
||||
'toggle_slug' => 'sale_badge',
|
||||
),
|
||||
),
|
||||
'box_shadow' => array(
|
||||
'default' => array(),
|
||||
'image' => array(
|
||||
'default' => array(),
|
||||
'image' => array(
|
||||
'label' => esc_html__( 'Image Box Shadow', 'et_builder' ),
|
||||
'option_category' => 'layout',
|
||||
'tab_slug' => 'advanced',
|
||||
@ -64,6 +84,17 @@ class ET_Builder_Module_Woocommerce_Images extends ET_Builder_Module {
|
||||
'important' => true,
|
||||
),
|
||||
),
|
||||
'sale_badge' => array(
|
||||
'label' => esc_html__( 'Sale Badge Box Shadow', 'et_builder' ),
|
||||
'option_category' => 'layout',
|
||||
'tab_slug' => 'advanced',
|
||||
'toggle_slug' => 'sale_badge',
|
||||
'css' => array(
|
||||
'main' => '%%order_class%% span.onsale',
|
||||
'overlay' => 'inset',
|
||||
'important' => true,
|
||||
),
|
||||
),
|
||||
),
|
||||
'background' => array(),
|
||||
'margin_padding' => array(
|
||||
@ -93,6 +124,31 @@ class ET_Builder_Module_Woocommerce_Images extends ET_Builder_Module {
|
||||
),
|
||||
),
|
||||
'button' => false,
|
||||
'form_field' => array(
|
||||
'sale_badge' => array(
|
||||
'label' => esc_html__( 'Sale Badge', 'et_builder' ),
|
||||
'background_color' => false,
|
||||
'text_color' => false,
|
||||
'focus_background_color' => false,
|
||||
'focus_text_color' => false,
|
||||
'font_field' => false,
|
||||
'margin_padding' => array(
|
||||
'css' => array(
|
||||
'main' => '%%order_class%% ul.products li.product span.onsale',
|
||||
'important' => array( 'custom_margin', 'custom_padding' ),
|
||||
),
|
||||
'custom_margin' => array(
|
||||
'default' => '0px|0px|0px|0px|false|false',
|
||||
),
|
||||
'custom_padding' => array(
|
||||
'default' => '6px|18px|6px|18px|false|false',
|
||||
),
|
||||
'toggle_slug' => 'sale_badge',
|
||||
),
|
||||
'border_styles' => false,
|
||||
'box_shadow' => false,
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
$this->help_videos = array(
|
||||
|
@ -10,6 +10,8 @@
|
||||
* @since 3.29
|
||||
*/
|
||||
|
||||
defined( 'ABSPATH' ) || exit;
|
||||
|
||||
/**
|
||||
* Class representing WooCommerce Meta component.
|
||||
*/
|
||||
@ -18,10 +20,11 @@ class ET_Builder_Module_Woocommerce_Meta extends ET_Builder_Module {
|
||||
* Initialize.
|
||||
*/
|
||||
public function init() {
|
||||
$this->name = esc_html__( 'Woo Meta', 'et_builder' );
|
||||
$this->plural = esc_html__( 'Woo Metas', 'et_builder' );
|
||||
$this->slug = 'et_pb_wc_meta';
|
||||
$this->vb_support = 'on';
|
||||
$this->name = esc_html__( 'Woo Product Meta', 'et_builder' );
|
||||
$this->plural = esc_html__( 'Woo Product Meta', 'et_builder' );
|
||||
$this->slug = 'et_pb_wc_meta';
|
||||
$this->vb_support = 'on';
|
||||
$this->folder_name = 'et_pb_woo_modules';
|
||||
|
||||
$this->settings_modal_toggles = array(
|
||||
'general' => array(
|
||||
|
@ -10,6 +10,8 @@
|
||||
* @since 3.29
|
||||
*/
|
||||
|
||||
defined( 'ABSPATH' ) || exit;
|
||||
|
||||
/**
|
||||
* Class representing WooCommerce Price component.
|
||||
*/
|
||||
@ -18,12 +20,13 @@ class ET_Builder_Module_Woocommerce_Price extends ET_Builder_Module {
|
||||
* Initialize.
|
||||
*/
|
||||
public function init() {
|
||||
$this->name = esc_html__( 'Woo Price', 'et_builder' );
|
||||
$this->plural = esc_html__( 'Woo Prices', 'et_builder' );
|
||||
$this->name = esc_html__( 'Woo Product Price', 'et_builder' );
|
||||
$this->plural = esc_html__( 'Woo Product Price', 'et_builder' );
|
||||
|
||||
// Use `et_pb_wc_{module}` for all WooCommerce modules.
|
||||
$this->slug = 'et_pb_wc_price';
|
||||
$this->vb_support = 'on';
|
||||
$this->slug = 'et_pb_wc_price';
|
||||
$this->vb_support = 'on';
|
||||
$this->folder_name = 'et_pb_woo_modules';
|
||||
|
||||
$this->settings_modal_toggles = array(
|
||||
'general' => array(
|
||||
|
@ -10,6 +10,8 @@
|
||||
* @since 3.29
|
||||
*/
|
||||
|
||||
defined( 'ABSPATH' ) || exit;
|
||||
|
||||
/**
|
||||
* Class representing WooCommerce Rating component.
|
||||
*/
|
||||
@ -20,10 +22,11 @@ class ET_Builder_Module_Woocommerce_Rating extends ET_Builder_Module {
|
||||
* @since 3.29.2 Added custom margin default.
|
||||
*/
|
||||
public function init() {
|
||||
$this->name = esc_html__( 'Woo Rating', 'et_builder' );
|
||||
$this->plural = esc_html__( 'Woo Ratings', 'et_builder' );
|
||||
$this->slug = 'et_pb_wc_rating';
|
||||
$this->vb_support = 'on';
|
||||
$this->name = esc_html__( 'Woo Product Rating', 'et_builder' );
|
||||
$this->plural = esc_html__( 'Woo Product Rating', 'et_builder' );
|
||||
$this->slug = 'et_pb_wc_rating';
|
||||
$this->vb_support = 'on';
|
||||
$this->folder_name = 'et_pb_woo_modules';
|
||||
|
||||
$this->settings_modal_toggles = array(
|
||||
'general' => array(
|
||||
|
@ -10,6 +10,8 @@
|
||||
* @since 3.29
|
||||
*/
|
||||
|
||||
defined( 'ABSPATH' ) || exit;
|
||||
|
||||
/**
|
||||
* Class representing WooCommerce Related Products component.
|
||||
*
|
||||
@ -26,6 +28,13 @@ class ET_Builder_Module_Woocommerce_Related_Products extends ET_Builder_Module {
|
||||
*/
|
||||
public static $static_props;
|
||||
|
||||
/**
|
||||
* Number of products to be offset.
|
||||
*
|
||||
* @var int Default 0.
|
||||
*/
|
||||
public static $offset = 0;
|
||||
|
||||
/**
|
||||
* Initialize.
|
||||
*
|
||||
@ -33,12 +42,13 @@ class ET_Builder_Module_Woocommerce_Related_Products extends ET_Builder_Module {
|
||||
* @see {https://github.com/elegantthemes/Divi/issues/17436}
|
||||
*/
|
||||
public function init() {
|
||||
$this->name = esc_html__( 'Woo Related Product', 'et_builder' );
|
||||
$this->name = esc_html__( 'Woo Related Products', 'et_builder' );
|
||||
$this->plural = esc_html__( 'Woo Related Products', 'et_builder' );
|
||||
|
||||
// Use `et_pb_wc_{module}` for all WooCommerce modules.
|
||||
$this->slug = 'et_pb_wc_related_products';
|
||||
$this->vb_support = 'on';
|
||||
$this->slug = 'et_pb_wc_related_products';
|
||||
$this->vb_support = 'on';
|
||||
$this->folder_name = 'et_pb_woo_modules';
|
||||
|
||||
$this->main_css_element = '%%order_class%%';
|
||||
|
||||
@ -46,14 +56,16 @@ class ET_Builder_Module_Woocommerce_Related_Products extends ET_Builder_Module {
|
||||
'general' => array(
|
||||
'toggles' => array(
|
||||
'main_content' => et_builder_i18n( 'Content' ),
|
||||
'elements' => et_builder_i18n( 'Elements' ),
|
||||
),
|
||||
),
|
||||
'advanced' => array(
|
||||
'toggles' => array(
|
||||
'overlay' => et_builder_i18n( 'Overlay' ),
|
||||
'image' => et_builder_i18n( 'Image' ),
|
||||
'overlay' => et_builder_i18n( 'Overlay' ),
|
||||
'image' => et_builder_i18n( 'Image' ),
|
||||
// Avoid Text suffix by manually defining the `star` toggle slug.
|
||||
'star' => esc_html__( 'Star Rating', 'et_builder' ),
|
||||
'star' => esc_html__( 'Star Rating', 'et_builder' ),
|
||||
'sale_badge' => esc_html__( 'Sale Badge Text', 'et_builder' ),
|
||||
),
|
||||
),
|
||||
);
|
||||
@ -168,7 +180,7 @@ class ET_Builder_Module_Woocommerce_Related_Products extends ET_Builder_Module {
|
||||
),
|
||||
),
|
||||
'borders' => array(
|
||||
'default' => array(
|
||||
'default' => array(
|
||||
'css' => array(
|
||||
'main' => array(
|
||||
'border_radii' => '%%order_class%%.et_pb_wc_related_products .product',
|
||||
@ -176,7 +188,7 @@ class ET_Builder_Module_Woocommerce_Related_Products extends ET_Builder_Module {
|
||||
),
|
||||
),
|
||||
),
|
||||
'image' => array(
|
||||
'image' => array(
|
||||
'css' => array(
|
||||
'main' => array(
|
||||
'border_radii' => '%%order_class%%.et_pb_module .et_shop_image',
|
||||
@ -188,14 +200,29 @@ class ET_Builder_Module_Woocommerce_Related_Products extends ET_Builder_Module {
|
||||
'tab_slug' => 'advanced',
|
||||
'toggle_slug' => 'image',
|
||||
),
|
||||
'sale_badge' => array(
|
||||
'css' => array(
|
||||
'main' => array(
|
||||
'border_radii' => '%%order_class%% span.onsale',
|
||||
'border_styles' => '%%order_class%% span.onsale',
|
||||
),
|
||||
'important' => true,
|
||||
),
|
||||
'defaults' => array(
|
||||
'border_radii' => 'on|3px|3px|3px|3px',
|
||||
),
|
||||
'label_prefix' => esc_html__( 'Sale Badge', 'et_builder' ),
|
||||
'tab_slug' => 'advanced',
|
||||
'toggle_slug' => 'sale_badge',
|
||||
),
|
||||
),
|
||||
'box_shadow' => array(
|
||||
'default' => array(
|
||||
'default' => array(
|
||||
'css' => array(
|
||||
'main' => '%%order_class%% .product',
|
||||
),
|
||||
),
|
||||
'image' => array(
|
||||
'image' => array(
|
||||
'label' => esc_html__( 'Image Box Shadow', 'et_builder' ),
|
||||
'option_category' => 'layout',
|
||||
'tab_slug' => 'advanced',
|
||||
@ -209,6 +236,17 @@ class ET_Builder_Module_Woocommerce_Related_Products extends ET_Builder_Module {
|
||||
'position' => '',
|
||||
),
|
||||
),
|
||||
'sale_badge' => array(
|
||||
'label' => esc_html__( 'Sale Badge Box Shadow', 'et_builder' ),
|
||||
'option_category' => 'layout',
|
||||
'tab_slug' => 'advanced',
|
||||
'toggle_slug' => 'sale_badge',
|
||||
'css' => array(
|
||||
'main' => '%%order_class%% span.onsale',
|
||||
'overlay' => 'inset',
|
||||
'important' => true,
|
||||
),
|
||||
),
|
||||
),
|
||||
'margin_padding' => array(
|
||||
'css' => array(
|
||||
@ -250,6 +288,31 @@ class ET_Builder_Module_Woocommerce_Related_Products extends ET_Builder_Module {
|
||||
),
|
||||
),
|
||||
'button' => false,
|
||||
'form_field' => array(
|
||||
'sale_badge' => array(
|
||||
'label' => esc_html__( 'Sale Badge', 'et_builder' ),
|
||||
'background_color' => false,
|
||||
'text_color' => false,
|
||||
'focus_background_color' => false,
|
||||
'focus_text_color' => false,
|
||||
'font_field' => false,
|
||||
'margin_padding' => array(
|
||||
'css' => array(
|
||||
'main' => '%%order_class%% ul.products li.product span.onsale',
|
||||
'important' => array( 'custom_margin', 'custom_padding' ),
|
||||
),
|
||||
'custom_margin' => array(
|
||||
'default' => '0px|0px|0px|0px|false|false',
|
||||
),
|
||||
'custom_padding' => array(
|
||||
'default' => '6px|18px|6px|18px|false|false',
|
||||
),
|
||||
'toggle_slug' => 'sale_badge',
|
||||
),
|
||||
'border_styles' => false,
|
||||
'box_shadow' => false,
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
$this->custom_css_fields = array(
|
||||
@ -352,6 +415,24 @@ class ET_Builder_Module_Woocommerce_Related_Products extends ET_Builder_Module {
|
||||
),
|
||||
)
|
||||
),
|
||||
'include_categories' => array(
|
||||
'label' => esc_html__( 'Included Categories', 'et_builder' ),
|
||||
'type' => 'categories',
|
||||
'meta_categories' => array(
|
||||
'all' => esc_html__( 'All Categories', 'et_builder' ),
|
||||
'current' => esc_html__( 'Current Category', 'et_builder' ),
|
||||
),
|
||||
'renderer_options' => array(
|
||||
'use_terms' => true,
|
||||
'term_name' => 'product_cat',
|
||||
),
|
||||
'description' => esc_html__( 'Choose which categories you would like to include.', 'et_builder' ),
|
||||
'taxonomy_name' => 'product_cat',
|
||||
'toggle_slug' => 'main_content',
|
||||
'computed_affects' => array(
|
||||
'__related_products',
|
||||
),
|
||||
),
|
||||
'sale_badge_color' => array(
|
||||
'label' => esc_html__( 'Sale Badge Color', 'et_builder' ),
|
||||
'description' => esc_html__( 'Pick a color to use for the sales bade that appears on products that are on sale.', 'et_builder' ),
|
||||
@ -394,6 +475,84 @@ class ET_Builder_Module_Woocommerce_Related_Products extends ET_Builder_Module {
|
||||
'mobile_options' => true,
|
||||
'sticky' => true,
|
||||
),
|
||||
'show_name' => array(
|
||||
'label' => esc_html__( 'Show Name', 'et_builder' ),
|
||||
'type' => 'yes_no_button',
|
||||
'option_category' => 'configuration',
|
||||
'options' => array(
|
||||
'on' => esc_html__( 'Yes', 'et_builder' ),
|
||||
'off' => esc_html__( 'No', 'et_builder' ),
|
||||
),
|
||||
'default_on_front' => 'on',
|
||||
'toggle_slug' => 'elements',
|
||||
'description' => esc_html__( 'Turn name on or off.', 'et_builder' ),
|
||||
'mobile_options' => true,
|
||||
'hover' => 'tabs',
|
||||
),
|
||||
'show_image' => array(
|
||||
'label' => esc_html__( 'Show Image', 'et_builder' ),
|
||||
'type' => 'yes_no_button',
|
||||
'option_category' => 'configuration',
|
||||
'options' => array(
|
||||
'on' => esc_html__( 'Yes', 'et_builder' ),
|
||||
'off' => esc_html__( 'No', 'et_builder' ),
|
||||
),
|
||||
'default_on_front' => 'on',
|
||||
'toggle_slug' => 'elements',
|
||||
'description' => esc_html__( 'Turn image on or off.', 'et_builder' ),
|
||||
'mobile_options' => true,
|
||||
'hover' => 'tabs',
|
||||
),
|
||||
'show_price' => array(
|
||||
'label' => esc_html__( 'Show Price', 'et_builder' ),
|
||||
'type' => 'yes_no_button',
|
||||
'option_category' => 'configuration',
|
||||
'options' => array(
|
||||
'on' => esc_html__( 'Yes', 'et_builder' ),
|
||||
'off' => esc_html__( 'No', 'et_builder' ),
|
||||
),
|
||||
'default_on_front' => 'on',
|
||||
'toggle_slug' => 'elements',
|
||||
'description' => esc_html__( 'Turn price on or off.', 'et_builder' ),
|
||||
'mobile_options' => true,
|
||||
'hover' => 'tabs',
|
||||
),
|
||||
'show_rating' => array(
|
||||
'label' => esc_html__( 'Show Rating', 'et_builder' ),
|
||||
'type' => 'yes_no_button',
|
||||
'option_category' => 'configuration',
|
||||
'options' => array(
|
||||
'on' => esc_html__( 'Yes', 'et_builder' ),
|
||||
'off' => esc_html__( 'No', 'et_builder' ),
|
||||
),
|
||||
'default_on_front' => 'on',
|
||||
'toggle_slug' => 'elements',
|
||||
'description' => esc_html__( 'Turn rating on or off.', 'et_builder' ),
|
||||
'mobile_options' => true,
|
||||
'hover' => 'tabs',
|
||||
),
|
||||
'show_sale_badge' => array(
|
||||
'label' => esc_html__( 'Show Sale Badge', 'et_builder' ),
|
||||
'type' => 'yes_no_button',
|
||||
'option_category' => 'configuration',
|
||||
'options' => array(
|
||||
'on' => esc_html__( 'Yes', 'et_builder' ),
|
||||
'off' => esc_html__( 'No', 'et_builder' ),
|
||||
),
|
||||
'default_on_front' => 'on',
|
||||
'toggle_slug' => 'elements',
|
||||
'description' => esc_html__( 'Turn sale badge on or off.', 'et_builder' ),
|
||||
'mobile_options' => true,
|
||||
'hover' => 'tabs',
|
||||
),
|
||||
'offset_number' => ET_Builder_Module_Helper_Woocommerce_Modules::get_field(
|
||||
'offset_number',
|
||||
array(
|
||||
'computed_affects' => array(
|
||||
'__related_products',
|
||||
),
|
||||
)
|
||||
),
|
||||
'__related_products' => array(
|
||||
'type' => 'computed',
|
||||
'computed_callback' => array(
|
||||
@ -406,6 +565,8 @@ class ET_Builder_Module_Woocommerce_Related_Products extends ET_Builder_Module {
|
||||
'posts_number',
|
||||
'columns_number',
|
||||
'orderby',
|
||||
'offset_number',
|
||||
'include_categories',
|
||||
),
|
||||
'computed_minimum' => array(
|
||||
'product',
|
||||
@ -416,6 +577,50 @@ class ET_Builder_Module_Woocommerce_Related_Products extends ET_Builder_Module {
|
||||
return $fields;
|
||||
}
|
||||
|
||||
/**
|
||||
* Filters the related product category Ids.
|
||||
*
|
||||
* @since 4.14.0
|
||||
*
|
||||
* @param array $term_ids Term IDs.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public static function set_related_products_categories( $term_ids ) {
|
||||
$include_cats = et_()->array_get( self::$static_props, 'include_categories', '' );
|
||||
$meta_cats = array( 'all', 'current' );
|
||||
|
||||
// WooCommerce by default handles All & Current based on the global $product.
|
||||
// So return the filtered $term_ids to let WooCommerce take control.
|
||||
if ( in_array( $include_cats, $meta_cats, true ) || empty( $include_cats ) ) {
|
||||
return $term_ids;
|
||||
}
|
||||
|
||||
// Return user selected categories if they exist.
|
||||
$include_cats = explode( ',', $include_cats );
|
||||
|
||||
return $include_cats;
|
||||
}
|
||||
|
||||
/**
|
||||
* Appends offset to the WP_Query that retrieves Products.
|
||||
*
|
||||
* @since 4.14.0
|
||||
*
|
||||
* @param array $query_args Query args.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public static function append_offset( $query_args ) {
|
||||
if ( ! is_array( $query_args ) ) {
|
||||
return $query_args;
|
||||
}
|
||||
|
||||
$query_args['offset'] = self::$offset;
|
||||
|
||||
return $query_args;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
@ -450,6 +655,10 @@ class ET_Builder_Module_Woocommerce_Related_Products extends ET_Builder_Module {
|
||||
* we pass them via a static variable.
|
||||
*/
|
||||
self::$static_props = $args;
|
||||
$offset_number = et_()->array_get( $args, 'offset_number', 0 );
|
||||
$include_cats = et_()->array_get( $args, 'include_categories', '' );
|
||||
$include_cats = ! empty( $include_cats ) ? explode( ',', $include_cats ) : array();
|
||||
$is_include_cats = is_array( $include_cats ) && count( $include_cats ) > 0;
|
||||
|
||||
// Force set product's class to ET_Theme_Builder_Woocommerce_Product_Variable_Placeholder
|
||||
// in TB so related product can outputs visible content based on pre-filled value in TB
|
||||
@ -457,11 +666,45 @@ class ET_Builder_Module_Woocommerce_Related_Products extends ET_Builder_Module {
|
||||
add_filter( 'woocommerce_product_class', 'et_theme_builder_wc_product_class' );
|
||||
}
|
||||
|
||||
$is_offset_valid = absint( $offset_number ) > 0;
|
||||
if ( $is_offset_valid ) {
|
||||
self::$offset = $offset_number;
|
||||
|
||||
add_filter(
|
||||
'woocommerce_shortcode_products_query',
|
||||
array(
|
||||
'ET_Builder_Module_Woocommerce_Related_Products',
|
||||
'append_offset',
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
if ( $is_include_cats ) {
|
||||
$product_id = et_builder_wc_get_product_id( $args );
|
||||
// To include only selected categories the cached transient should be flushed,
|
||||
// so WooCommerce can compute the categories and cache it again.
|
||||
delete_transient( 'wc_related_' . $product_id );
|
||||
|
||||
add_filter(
|
||||
'woocommerce_get_related_product_cat_terms',
|
||||
array(
|
||||
'ET_Builder_Module_Woocommerce_Related_Products',
|
||||
// phpcs:ignore WordPress.Arrays.CommaAfterArrayItem.NoComma -- Call to a function.
|
||||
'set_related_products_categories'
|
||||
)
|
||||
);
|
||||
|
||||
// Also disable related Products by tag
|
||||
// so Products from other categories are not included.
|
||||
add_filter( 'woocommerce_product_related_posts_relate_by_tag', '__return_false' );
|
||||
}
|
||||
|
||||
add_filter(
|
||||
'woocommerce_output_related_products_args',
|
||||
array(
|
||||
'ET_Builder_Module_Woocommerce_Related_Products',
|
||||
'set_related_products_args',
|
||||
// phpcs:ignore WordPress.Arrays.CommaAfterArrayItem.NoComma -- Call to a function.
|
||||
'set_related_products_args'
|
||||
)
|
||||
);
|
||||
|
||||
@ -471,10 +714,37 @@ class ET_Builder_Module_Woocommerce_Related_Products extends ET_Builder_Module {
|
||||
'woocommerce_output_related_products_args',
|
||||
array(
|
||||
'ET_Builder_Module_Woocommerce_Related_Products',
|
||||
'set_related_products_args',
|
||||
// phpcs:ignore WordPress.Arrays.CommaAfterArrayItem.NoComma -- Call to a function.
|
||||
'set_related_products_args'
|
||||
)
|
||||
);
|
||||
|
||||
if ( $is_include_cats ) {
|
||||
remove_filter(
|
||||
'woocommerce_get_related_product_cat_terms',
|
||||
array(
|
||||
'ET_Builder_Module_Woocommerce_Related_Products',
|
||||
// phpcs:ignore WordPress.Arrays.CommaAfterArrayItem.NoComma -- Call to a function.
|
||||
'set_related_products_categories'
|
||||
)
|
||||
);
|
||||
|
||||
remove_filter( 'woocommerce_product_related_posts_relate_by_tag', '__return_false' );
|
||||
}
|
||||
|
||||
if ( $is_offset_valid ) {
|
||||
remove_filter(
|
||||
'woocommerce_shortcode_products_query',
|
||||
array(
|
||||
'ET_Builder_Module_Woocommerce_Related_Products',
|
||||
// phpcs:ignore WordPress.Arrays.CommaAfterArrayItem.NoComma -- Call to a function.
|
||||
'append_offset'
|
||||
)
|
||||
);
|
||||
|
||||
self::$offset = 0;
|
||||
}
|
||||
|
||||
return $output;
|
||||
}
|
||||
|
||||
@ -553,6 +823,54 @@ class ET_Builder_Module_Woocommerce_Related_Products extends ET_Builder_Module {
|
||||
return $selected_args;
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds Multi view attributes to the Outer wrapper.
|
||||
*
|
||||
* Since we do not have control over the WooCommerce Related Products markup, we inject Multi
|
||||
* view attributes on to the Outer wrapper.
|
||||
*
|
||||
* @param array $outer_wrapper_attrs Outer wrapper attributes.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function add_multi_view_attrs( $outer_wrapper_attrs ) {
|
||||
$multi_view = et_pb_multi_view_options( $this );
|
||||
|
||||
// phpcs:disable WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned -- Invalid warning.
|
||||
$multi_view_attrs = $multi_view->render_attrs(
|
||||
array(
|
||||
'classes' => array(
|
||||
'et_pb_wc_related_products_no_name' => array(
|
||||
'show_name' => 'off',
|
||||
),
|
||||
'et_pb_wc_related_products_no_image' => array(
|
||||
'show_image' => 'off',
|
||||
),
|
||||
'et_pb_wc_related_products_no_price' => array(
|
||||
'show_price' => 'off',
|
||||
),
|
||||
'et_pb_wc_related_products_no_rating' => array(
|
||||
'show_rating' => 'off',
|
||||
),
|
||||
'et_pb_wc_related_products_no_sale_badge' => array(
|
||||
'show_sale_badge' => 'off',
|
||||
),
|
||||
|
||||
),
|
||||
),
|
||||
false,
|
||||
null,
|
||||
true
|
||||
);
|
||||
// phpcs:enable WordPress.Arrays.MultipleStatementAlignment.DoubleArrowNotAligned
|
||||
|
||||
if ( $multi_view_attrs && is_array( $multi_view_attrs ) ) {
|
||||
$outer_wrapper_attrs = array_merge( $outer_wrapper_attrs, $multi_view_attrs );
|
||||
}
|
||||
|
||||
return $outer_wrapper_attrs;
|
||||
}
|
||||
|
||||
/**
|
||||
* Renders the module output.
|
||||
*
|
||||
@ -680,19 +998,30 @@ class ET_Builder_Module_Woocommerce_Related_Products extends ET_Builder_Module {
|
||||
"et_builder_module_{$render_slug}_outer_wrapper_attrs",
|
||||
array(
|
||||
'ET_Builder_Module_Helper_Woocommerce_Modules',
|
||||
'output_data_icon_attrs',
|
||||
// phpcs:ignore WordPress.Arrays.CommaAfterArrayItem.NoComma -- Call to a function.
|
||||
'output_data_icon_attrs'
|
||||
),
|
||||
10,
|
||||
2
|
||||
);
|
||||
|
||||
add_filter(
|
||||
"et_builder_module_{$render_slug}_outer_wrapper_attrs",
|
||||
array(
|
||||
$this,
|
||||
// phpcs:ignore WordPress.Arrays.CommaAfterArrayItem.NoComma -- Call to a function.
|
||||
'add_multi_view_attrs',
|
||||
)
|
||||
);
|
||||
|
||||
$output = $this->_render_module_wrapper( $output, $render_slug );
|
||||
|
||||
remove_filter(
|
||||
"et_builder_module_{$render_slug}_outer_wrapper_attrs",
|
||||
array(
|
||||
'ET_Builder_Module_Helper_Woocommerce_Modules',
|
||||
'output_data_icon_attrs',
|
||||
// phpcs:ignore WordPress.Arrays.CommaAfterArrayItem.NoComma -- Call to a function.
|
||||
'output_data_icon_attrs'
|
||||
),
|
||||
10
|
||||
);
|
||||
|
@ -13,6 +13,8 @@ if ( ! class_exists( 'ET_Builder_Module_Gallery' ) ) {
|
||||
require_once ET_BUILDER_DIR_RESOLVED_PATH . '/module/Comments.php';
|
||||
}
|
||||
|
||||
defined( 'ABSPATH' ) || exit;
|
||||
|
||||
/**
|
||||
* Class representing WooCommerce Reviews component.
|
||||
*/
|
||||
@ -26,9 +28,10 @@ class ET_Builder_Module_Woocommerce_Reviews extends ET_Builder_Module_Comments {
|
||||
parent::init();
|
||||
|
||||
// Define basic module information.
|
||||
$this->name = esc_html__( 'Woo Reviews', 'et_builder' );
|
||||
$this->plural = esc_html__( 'Woo Reviews', 'et_builder' );
|
||||
$this->slug = 'et_pb_wc_reviews';
|
||||
$this->name = esc_html__( 'Woo Product Reviews', 'et_builder' );
|
||||
$this->plural = esc_html__( 'Woo Product Reviews', 'et_builder' );
|
||||
$this->slug = 'et_pb_wc_reviews';
|
||||
$this->folder_name = 'et_pb_woo_modules';
|
||||
|
||||
// Modify toggle settings.
|
||||
$this->settings_modal_toggles['general']['toggles']['main_content'] = array(
|
||||
@ -189,6 +192,20 @@ class ET_Builder_Module_Woocommerce_Reviews extends ET_Builder_Module_Comments {
|
||||
),
|
||||
)
|
||||
);
|
||||
$fields['show_rating'] = array(
|
||||
'label' => esc_html__( 'Show Rating', 'et_builder' ),
|
||||
'type' => 'yes_no_button',
|
||||
'option_category' => 'configuration',
|
||||
'options' => array(
|
||||
'on' => esc_html__( 'Yes', 'et_builder' ),
|
||||
'off' => esc_html__( 'No', 'et_builder' ),
|
||||
),
|
||||
'default_on_front' => 'on',
|
||||
'toggle_slug' => 'elements',
|
||||
'description' => esc_html__( 'Turn rating on or off.', 'et_builder' ),
|
||||
'mobile_options' => true,
|
||||
'hover' => 'tabs',
|
||||
);
|
||||
$fields['__reviews'] = array(
|
||||
'type' => 'computed',
|
||||
'computed_callback' => array(
|
||||
|
@ -10,6 +10,8 @@
|
||||
* @since 3.29
|
||||
*/
|
||||
|
||||
defined( 'ABSPATH' ) || exit;
|
||||
|
||||
/**
|
||||
* Class representing WooCommerce Stock component.
|
||||
*/
|
||||
@ -18,10 +20,11 @@ class ET_Builder_Module_Woocommerce_Stock extends ET_Builder_Module {
|
||||
* Initialize.
|
||||
*/
|
||||
public function init() {
|
||||
$this->name = esc_html__( 'Woo Stock', 'et_builder' );
|
||||
$this->plural = esc_html__( 'Woo Stock', 'et_builder' );
|
||||
$this->slug = 'et_pb_wc_stock';
|
||||
$this->vb_support = 'on';
|
||||
$this->name = esc_html__( 'Woo Product Stock', 'et_builder' );
|
||||
$this->plural = esc_html__( 'Woo Product Stock', 'et_builder' );
|
||||
$this->slug = 'et_pb_wc_stock';
|
||||
$this->vb_support = 'on';
|
||||
$this->folder_name = 'et_pb_woo_modules';
|
||||
|
||||
$this->settings_modal_toggles = array(
|
||||
'general' => array(
|
||||
|
@ -10,6 +10,8 @@
|
||||
* @since 3.29
|
||||
*/
|
||||
|
||||
defined( 'ABSPATH' ) || exit;
|
||||
|
||||
if ( ! class_exists( 'ET_Builder_Module_Tabs' ) ) {
|
||||
require_once ET_BUILDER_DIR_RESOLVED_PATH . '/module/Tabs.php';
|
||||
}
|
||||
@ -28,9 +30,10 @@ class ET_Builder_Module_Woocommerce_Tabs extends ET_Builder_Module_Tabs {
|
||||
parent::init();
|
||||
|
||||
// Define WooCommerce Tabs module property; overwriting inherited property.
|
||||
$this->name = esc_html__( 'Woo Tabs', 'et_builder' );
|
||||
$this->plural = esc_html__( 'Woo Tabs', 'et_builder' );
|
||||
$this->slug = 'et_pb_wc_tabs';
|
||||
$this->name = esc_html__( 'Woo Product Tabs', 'et_builder' );
|
||||
$this->plural = esc_html__( 'Woo Product Tabs', 'et_builder' );
|
||||
$this->slug = 'et_pb_wc_tabs';
|
||||
$this->folder_name = 'et_pb_woo_modules';
|
||||
|
||||
/*
|
||||
* Set property for holding rendering data so the data rendering via
|
||||
|
@ -10,6 +10,8 @@
|
||||
* @since 3.29
|
||||
*/
|
||||
|
||||
defined( 'ABSPATH' ) || exit;
|
||||
|
||||
/**
|
||||
* Class representing WooCommerce Title component.
|
||||
*/
|
||||
@ -18,10 +20,11 @@ class ET_Builder_Module_Woocommerce_Title extends ET_Builder_Module {
|
||||
* Initialize.
|
||||
*/
|
||||
public function init() {
|
||||
$this->name = esc_html__( 'Woo Title', 'et_builder' );
|
||||
$this->plural = esc_html__( 'Woo Titles', 'et_builder' );
|
||||
$this->slug = 'et_pb_wc_title';
|
||||
$this->vb_support = 'on';
|
||||
$this->name = esc_html__( 'Woo Product Title', 'et_builder' );
|
||||
$this->plural = esc_html__( 'Woo Product Title', 'et_builder' );
|
||||
$this->slug = 'et_pb_wc_title';
|
||||
$this->vb_support = 'on';
|
||||
$this->folder_name = 'et_pb_woo_modules';
|
||||
|
||||
$this->settings_modal_toggles = array(
|
||||
'general' => array(
|
||||
|
@ -10,6 +10,8 @@
|
||||
* @since 3.29
|
||||
*/
|
||||
|
||||
defined( 'ABSPATH' ) || exit;
|
||||
|
||||
/**
|
||||
* Class representing WooCommerce Upsells component.
|
||||
*/
|
||||
@ -21,16 +23,24 @@ class ET_Builder_Module_Woocommerce_Upsells extends ET_Builder_Module {
|
||||
*/
|
||||
public static $static_props;
|
||||
|
||||
/**
|
||||
* Number of products to be offset.
|
||||
*
|
||||
* @var int Default 0.
|
||||
*/
|
||||
public static $offset = 0;
|
||||
|
||||
/**
|
||||
* Initialize.
|
||||
*/
|
||||
public function init() {
|
||||
$this->name = esc_html__( 'Woo Upsell', 'et_builder' );
|
||||
$this->plural = esc_html__( 'Woo Upsells', 'et_builder' );
|
||||
$this->name = esc_html__( 'Woo Product Upsell', 'et_builder' );
|
||||
$this->plural = esc_html__( 'Woo Product Upsell', 'et_builder' );
|
||||
|
||||
// Use `et_pb_wc_{module}` for all WooCommerce modules.
|
||||
$this->slug = 'et_pb_wc_upsells';
|
||||
$this->vb_support = 'on';
|
||||
$this->slug = 'et_pb_wc_upsells';
|
||||
$this->vb_support = 'on';
|
||||
$this->folder_name = 'et_pb_woo_modules';
|
||||
|
||||
$this->main_css_element = '%%order_class%%';
|
||||
|
||||
@ -38,14 +48,16 @@ class ET_Builder_Module_Woocommerce_Upsells extends ET_Builder_Module {
|
||||
'general' => array(
|
||||
'toggles' => array(
|
||||
'main_content' => et_builder_i18n( 'Content' ),
|
||||
'elements' => et_builder_i18n( 'Elements' ),
|
||||
),
|
||||
),
|
||||
'advanced' => array(
|
||||
'toggles' => array(
|
||||
'overlay' => et_builder_i18n( 'Overlay' ),
|
||||
'image' => et_builder_i18n( 'Image' ),
|
||||
'overlay' => et_builder_i18n( 'Overlay' ),
|
||||
'image' => et_builder_i18n( 'Image' ),
|
||||
// Avoid Text suffix by manually defining the `star` toggle slug.
|
||||
'star' => esc_html__( 'Star Rating', 'et_builder' ),
|
||||
'star' => esc_html__( 'Star Rating', 'et_builder' ),
|
||||
'sale_badge' => esc_html__( 'Sale Badge Text', 'et_builder' ),
|
||||
),
|
||||
),
|
||||
);
|
||||
@ -73,7 +85,8 @@ class ET_Builder_Module_Woocommerce_Upsells extends ET_Builder_Module {
|
||||
'letter_spacing_hover' => '%%order_class%% ul.products li.product:hover .star-rating',
|
||||
),
|
||||
'font_size' => array(
|
||||
'default' => 14,
|
||||
'default' => '14px',
|
||||
'label' => esc_html__( 'Star Rating Size', 'et_builder' ),
|
||||
),
|
||||
'hide_font' => true,
|
||||
'hide_line_height' => true,
|
||||
@ -81,9 +94,6 @@ class ET_Builder_Module_Woocommerce_Upsells extends ET_Builder_Module {
|
||||
'text_align' => array(
|
||||
'label' => esc_html__( 'Star Rating Alignment', 'et_builder' ),
|
||||
),
|
||||
'font_size' => array(
|
||||
'label' => esc_html__( 'Star Rating Size', 'et_builder' ),
|
||||
),
|
||||
'text_color' => array(
|
||||
'label' => esc_html__( 'Star Rating Color', 'et_builder' ),
|
||||
),
|
||||
@ -179,14 +189,29 @@ class ET_Builder_Module_Woocommerce_Upsells extends ET_Builder_Module {
|
||||
'tab_slug' => 'advanced',
|
||||
'toggle_slug' => 'image',
|
||||
),
|
||||
'sale_badge' => array(
|
||||
'css' => array(
|
||||
'main' => array(
|
||||
'border_radii' => '%%order_class%% span.onsale',
|
||||
'border_styles' => '%%order_class%% span.onsale',
|
||||
),
|
||||
'important' => true,
|
||||
),
|
||||
'defaults' => array(
|
||||
'border_radii' => 'on|3px|3px|3px|3px',
|
||||
),
|
||||
'label_prefix' => esc_html__( 'Sale Badge', 'et_builder' ),
|
||||
'tab_slug' => 'advanced',
|
||||
'toggle_slug' => 'sale_badge',
|
||||
),
|
||||
),
|
||||
'box_shadow' => array(
|
||||
'default' => array(
|
||||
'default' => array(
|
||||
'css' => array(
|
||||
'main' => '%%order_class%% .product',
|
||||
),
|
||||
),
|
||||
'image' => array(
|
||||
'image' => array(
|
||||
'label' => esc_html__( 'Image Box Shadow', 'et_builder' ),
|
||||
'option_category' => 'layout',
|
||||
'tab_slug' => 'advanced',
|
||||
@ -200,6 +225,17 @@ class ET_Builder_Module_Woocommerce_Upsells extends ET_Builder_Module {
|
||||
'position' => '',
|
||||
),
|
||||
),
|
||||
'sale_badge' => array(
|
||||
'label' => esc_html__( 'Sale Badge Box Shadow', 'et_builder' ),
|
||||
'option_category' => 'layout',
|
||||
'tab_slug' => 'advanced',
|
||||
'toggle_slug' => 'sale_badge',
|
||||
'css' => array(
|
||||
'main' => '%%order_class%% span.onsale',
|
||||
'overlay' => 'inset',
|
||||
'important' => true,
|
||||
),
|
||||
),
|
||||
),
|
||||
'margin_padding' => array(
|
||||
'css' => array(
|
||||
@ -240,6 +276,31 @@ class ET_Builder_Module_Woocommerce_Upsells extends ET_Builder_Module {
|
||||
),
|
||||
),
|
||||
'button' => false,
|
||||
'form_field' => array(
|
||||
'sale_badge' => array(
|
||||
'label' => esc_html__( 'Sale Badge', 'et_builder' ),
|
||||
'background_color' => false,
|
||||
'text_color' => false,
|
||||
'focus_background_color' => false,
|
||||
'focus_text_color' => false,
|
||||
'font_field' => false,
|
||||
'margin_padding' => array(
|
||||
'css' => array(
|
||||
'main' => '%%order_class%% ul.products li.product span.onsale',
|
||||
'important' => array( 'custom_margin', 'custom_padding' ),
|
||||
),
|
||||
'custom_margin' => array(
|
||||
'default' => '0px|0px|0px|0px|false|false',
|
||||
),
|
||||
'custom_padding' => array(
|
||||
'default' => '6px|18px|6px|18px|false|false',
|
||||
),
|
||||
'toggle_slug' => 'sale_badge',
|
||||
),
|
||||
'border_styles' => false,
|
||||
'box_shadow' => false,
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
$this->custom_css_fields = array(
|
||||
@ -384,6 +445,84 @@ class ET_Builder_Module_Woocommerce_Upsells extends ET_Builder_Module {
|
||||
'mobile_options' => true,
|
||||
'sticky' => true,
|
||||
),
|
||||
'show_name' => array(
|
||||
'label' => esc_html__( 'Show Name', 'et_builder' ),
|
||||
'type' => 'yes_no_button',
|
||||
'option_category' => 'configuration',
|
||||
'options' => array(
|
||||
'on' => esc_html__( 'Yes', 'et_builder' ),
|
||||
'off' => esc_html__( 'No', 'et_builder' ),
|
||||
),
|
||||
'default_on_front' => 'on',
|
||||
'toggle_slug' => 'elements',
|
||||
'description' => esc_html__( 'Turn name on or off.', 'et_builder' ),
|
||||
'mobile_options' => true,
|
||||
'hover' => 'tabs',
|
||||
),
|
||||
'show_image' => array(
|
||||
'label' => esc_html__( 'Show Image', 'et_builder' ),
|
||||
'type' => 'yes_no_button',
|
||||
'option_category' => 'configuration',
|
||||
'options' => array(
|
||||
'on' => esc_html__( 'Yes', 'et_builder' ),
|
||||
'off' => esc_html__( 'No', 'et_builder' ),
|
||||
),
|
||||
'default_on_front' => 'on',
|
||||
'toggle_slug' => 'elements',
|
||||
'description' => esc_html__( 'Turn image on or off.', 'et_builder' ),
|
||||
'mobile_options' => true,
|
||||
'hover' => 'tabs',
|
||||
),
|
||||
'show_price' => array(
|
||||
'label' => esc_html__( 'Show Price', 'et_builder' ),
|
||||
'type' => 'yes_no_button',
|
||||
'option_category' => 'configuration',
|
||||
'options' => array(
|
||||
'on' => esc_html__( 'Yes', 'et_builder' ),
|
||||
'off' => esc_html__( 'No', 'et_builder' ),
|
||||
),
|
||||
'default_on_front' => 'on',
|
||||
'toggle_slug' => 'elements',
|
||||
'description' => esc_html__( 'Turn price on or off.', 'et_builder' ),
|
||||
'mobile_options' => true,
|
||||
'hover' => 'tabs',
|
||||
),
|
||||
'show_rating' => array(
|
||||
'label' => esc_html__( 'Show Rating', 'et_builder' ),
|
||||
'type' => 'yes_no_button',
|
||||
'option_category' => 'configuration',
|
||||
'options' => array(
|
||||
'on' => esc_html__( 'Yes', 'et_builder' ),
|
||||
'off' => esc_html__( 'No', 'et_builder' ),
|
||||
),
|
||||
'default_on_front' => 'on',
|
||||
'toggle_slug' => 'elements',
|
||||
'description' => esc_html__( 'Turn rating on or off.', 'et_builder' ),
|
||||
'mobile_options' => true,
|
||||
'hover' => 'tabs',
|
||||
),
|
||||
'show_sale_badge' => array(
|
||||
'label' => esc_html__( 'Show Sale Badge', 'et_builder' ),
|
||||
'type' => 'yes_no_button',
|
||||
'option_category' => 'configuration',
|
||||
'options' => array(
|
||||
'on' => esc_html__( 'Yes', 'et_builder' ),
|
||||
'off' => esc_html__( 'No', 'et_builder' ),
|
||||
),
|
||||
'default_on_front' => 'on',
|
||||
'toggle_slug' => 'elements',
|
||||
'description' => esc_html__( 'Turn sale badge on or off.', 'et_builder' ),
|
||||
'mobile_options' => true,
|
||||
'hover' => 'tabs',
|
||||
),
|
||||
'offset_number' => ET_Builder_Module_Helper_Woocommerce_Modules::get_field(
|
||||
'offset_number',
|
||||
array(
|
||||
'computed_affects' => array(
|
||||
'__upsells',
|
||||
),
|
||||
)
|
||||
),
|
||||
'__upsells' => array(
|
||||
'type' => 'computed',
|
||||
'computed_callback' => array(
|
||||
@ -396,6 +535,7 @@ class ET_Builder_Module_Woocommerce_Upsells extends ET_Builder_Module {
|
||||
'posts_number',
|
||||
'columns_number',
|
||||
'orderby',
|
||||
'offset_number',
|
||||
),
|
||||
'computed_minimum' => array(
|
||||
'product',
|
||||
@ -406,6 +546,25 @@ class ET_Builder_Module_Woocommerce_Upsells extends ET_Builder_Module {
|
||||
return $fields;
|
||||
}
|
||||
|
||||
/**
|
||||
* Appends offset to the WP_Query that retrieves Products.
|
||||
*
|
||||
* @since 4.14.0
|
||||
*
|
||||
* @param array $query_args Query args.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public static function append_offset( $query_args ) {
|
||||
if ( ! is_array( $query_args ) ) {
|
||||
return $query_args;
|
||||
}
|
||||
|
||||
$query_args['offset'] = self::$offset;
|
||||
|
||||
return $query_args;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
@ -433,6 +592,7 @@ class ET_Builder_Module_Woocommerce_Upsells extends ET_Builder_Module {
|
||||
*/
|
||||
public static function get_upsells( $args = array(), $conditional_tags = array(), $current_page = array() ) {
|
||||
self::$static_props = $args;
|
||||
$offset_number = et_()->array_get( $args, 'offset_number', 0 );
|
||||
|
||||
// Force set product's class to ET_Theme_Builder_Woocommerce_Product_Variable_Placeholder
|
||||
// in TB so related product can outputs visible content based on pre-filled value in TB
|
||||
@ -449,6 +609,16 @@ class ET_Builder_Module_Woocommerce_Upsells extends ET_Builder_Module {
|
||||
add_filter( 'woocommerce_product_class', 'et_theme_builder_wc_product_class' );
|
||||
}
|
||||
|
||||
$is_offset_valid = absint( $offset_number ) > 0;
|
||||
if ( $is_offset_valid ) {
|
||||
self::$offset = $offset_number;
|
||||
|
||||
add_filter(
|
||||
'woocommerce_shortcode_products_query',
|
||||
array( 'ET_Builder_Module_Woocommerce_Upsells', 'append_offset' )
|
||||
);
|
||||
}
|
||||
|
||||
add_filter(
|
||||
'woocommerce_upsell_display_args',
|
||||
array(
|
||||
@ -474,12 +644,18 @@ class ET_Builder_Module_Woocommerce_Upsells extends ET_Builder_Module {
|
||||
|
||||
remove_filter(
|
||||
'woocommerce_upsell_display_args',
|
||||
array(
|
||||
'ET_Builder_Module_Woocommerce_Upsells',
|
||||
'set_upsell_display_args',
|
||||
)
|
||||
array( 'ET_Builder_Module_Woocommerce_Upsells', 'set_upsell_display_args' )
|
||||
);
|
||||
|
||||
if ( $is_offset_valid ) {
|
||||
remove_filter(
|
||||
'woocommerce_shortcode_products_query',
|
||||
array( 'ET_Builder_Module_Woocommerce_Upsells', 'append_offset' )
|
||||
);
|
||||
|
||||
self::$offset = 0;
|
||||
}
|
||||
|
||||
return $output;
|
||||
}
|
||||
|
||||
@ -538,6 +714,51 @@ class ET_Builder_Module_Woocommerce_Upsells extends ET_Builder_Module {
|
||||
return $selected_args;
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds Multi view attributes to the Outer wrapper.
|
||||
*
|
||||
* Since we do not have control over the WooCommerce Related Products markup, we inject Multi
|
||||
* view attributes on to the Outer wrapper.
|
||||
*
|
||||
* @param array $outer_wrapper_attrs Outer wrapper attributes.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function add_multi_view_attrs( $outer_wrapper_attrs ) {
|
||||
$multi_view = et_pb_multi_view_options( $this );
|
||||
|
||||
$multi_view_attrs = $multi_view->render_attrs(
|
||||
array(
|
||||
'classes' => array(
|
||||
'et_pb_wc_upsells_no_name' => array(
|
||||
'show_name' => 'off',
|
||||
),
|
||||
'et_pb_wc_upsells_no_image' => array(
|
||||
'show_image' => 'off',
|
||||
),
|
||||
'et_pb_wc_upsells_no_price' => array(
|
||||
'show_price' => 'off',
|
||||
),
|
||||
'et_pb_wc_upsells_no_rating' => array(
|
||||
'show_rating' => 'off',
|
||||
),
|
||||
'et_pb_wc_upsells_no_sale_badge' => array(
|
||||
'show_sale_badge' => 'off',
|
||||
),
|
||||
),
|
||||
),
|
||||
false,
|
||||
null,
|
||||
true
|
||||
);
|
||||
|
||||
if ( $multi_view_attrs && is_array( $multi_view_attrs ) ) {
|
||||
$outer_wrapper_attrs = array_merge( $outer_wrapper_attrs, $multi_view_attrs );
|
||||
}
|
||||
|
||||
return $outer_wrapper_attrs;
|
||||
}
|
||||
|
||||
/**
|
||||
* Renders the module output.
|
||||
*
|
||||
@ -668,6 +889,14 @@ class ET_Builder_Module_Woocommerce_Upsells extends ET_Builder_Module {
|
||||
2
|
||||
);
|
||||
|
||||
add_filter(
|
||||
"et_builder_module_{$render_slug}_outer_wrapper_attrs",
|
||||
array(
|
||||
$this,
|
||||
'add_multi_view_attrs',
|
||||
)
|
||||
);
|
||||
|
||||
$output = $this->_render_module_wrapper( $output, $render_slug );
|
||||
|
||||
remove_filter(
|
||||
|
Reference in New Issue
Block a user