Skip to content

Commit

Permalink
Merge branch 'release/2.32.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
JiveDig committed Jan 19, 2024
2 parents 243d339 + 2896bd5 commit a9ecad9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 2.32.1 (1/19/24)
* Fixed: Encoded special characters were displaying on the front end in some configurations.

## 2.32.0 (1/18/24)
* Added: Better support for WP Recipe Maker. Recipe buttons now inherit styling from Mai.
* Changed: Update ACF to 6.2.5.
Expand Down
4 changes: 2 additions & 2 deletions lib/functions/shortcodes.php
Original file line number Diff line number Diff line change
Expand Up @@ -265,9 +265,9 @@ function mai_post_terms_shortcode_classes( $output, $terms, $atts ) {
$classes = $first->getAttribute( 'class' );
$classes = mai_add_classes( sprintf( 'entry-terms-%s', sanitize_html_class( (string) $atts['taxonomy'] ) ), $classes );
$first->setAttribute( 'class', $classes );
$output = trim( $dom->saveHTML() );
$output = mai_get_dom_html( $dom );

return $output;
return trim( $output );
}

/**
Expand Down
4 changes: 3 additions & 1 deletion lib/support/woocommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,9 @@ function mai_product_loop_start_columns( $html ) {

$first->setAttribute( 'style', $style );

return str_replace( '</ul>', '', $dom->saveHTML() );
$html = mai_get_dom_html( $dom );

return str_replace( '</ul>', '', $html );
}

add_filter( 'woocommerce_pagination_args', 'mai_woocommerce_pagination_previous_next_text' );
Expand Down
2 changes: 1 addition & 1 deletion mai-engine.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Plugin URI: https://bizbudding.com/mai-theme/
* GitHub Plugin URI: https://github.com/maithemewp/mai-engine/
* Description: The required plugin to power Mai child themes.
* Version: 2.32.0
* Version: 2.32.1
* Requires at least: 6.4
* Requires PHP: 7.4
* Author: BizBudding
Expand Down

0 comments on commit a9ecad9

Please sign in to comment.