Bug fixes, improved themes support, Google Analytics site search feature, RTL support and many more in the latest plugin releases.
New Features
Support for Google Analytics site search feature
Google Analytics integration was updated. Now its support build-in Site Search feature. With its help you can view all searches that was made on your site from standatd Analytics dashboard and use all its coll features.
More about this feature you can read here.
Rtl support
Now plugin works great with right-to-left languages ( like, for example, Arabic).
New themes support
Seamless integration for Maya shop and Generatepress themes.
Development
aws_index_apply_filters filter
Apply or not all available the_content
filters to product content field. Useful in you need to index or display some content that was added with the_content
filter.
Note: by enabling can greatly increase search and index speed.
add_filter( 'aws_index_apply_filters', 'my_aws_index_apply_filters' ); function my_aws_index_apply_filters( $apply ) { return true; }
aws_indexed_data filter
Filters product data array before insert to plugin index table.
add_filter( 'aws_indexed_data', 'my_aws_indexed_data', 10, 2 ); function my_aws_indexed_data( $data, $id) { return $data; }
Bug fixes
- Add uninstall file to clear all plugin data during uninstall process.
- Divi theme integration bug fix.
- AND search logic improved.
- Issue with products number for search results page.
- Update settings page.
- Bug with WooCommerce attributes filter widget. Now its display proper number of attributes on search page.
- Filter by attributes on search results page. Now search results works proper with multiple attribute filters.
- WooCommerce price filter widget bug.
- Synonyms support update.
- Plurals support update.
- Speed-up settings page.
- Bug with not displayed categories for variable products.
- Bug with not displaying variation attributes in the title when using custom attributes.
- Bug with custom attributes that display for variations that doesn't use them.
- Fix variation products search by its attributes if selected
any
attribute.
Comments