Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion includes/classes/ElementorUtils.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public function get_all_widgets_in_all_templates(): array {
if ( ! is_array( $template_content ) ) {
continue;
}
$all_widgets = array_merge(
$all_widgets = array_merge(
$all_widgets,
$this->recursively_get_inner_widgets( $template_content )
);
Expand Down
2 changes: 1 addition & 1 deletion includes/classes/Feature/WooCommerce/Products.php
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ protected function get_price_filter_tax_adjustment( $price ) {
return $price;
}

return $price - \WC_Tax::get_tax_total( \WC_Tax::calc_inclusive_tax( $price, $tax_rates ) );
return wc_format_decimal( $price - \WC_Tax::get_tax_total( \WC_Tax::calc_inclusive_tax( $price, $tax_rates ) ) );
}

/**
Expand Down
Loading