Hello everyone!
We’re excited to bring you Astra 4.8.12, an update designed to make your website smoother, more efficient, and easier to manage.
This release focuses on improving menu toggle functionality, enhancing SEO control for blog post titles, and fixing several key issues affecting layout, styling, and third-party integrations.
Whether you’re using Astra for an online store, a learning platform, or a content-rich site, these refinements ensure a better experience for both you and your visitors.
What’s Improved?
- Improved synchronization of toggled class across menu toggle buttons to ensure consistent add/remove behavior.
- Added filter to use more attribute to blog post title links for improved SEO control.
/**
* Modify the anchor attributes for post titles in Astra theme.
*
* This function adds 'rel' attributes (bookmark and nofollow) to post title anchor tags.
*
* @param array $attributes The current attributes of the post title anchor.
* @return array The modified attributes for the anchor tag.
*/
function customize_post_title_anchor_attributes( $attributes ) {
if ( is_array( $attributes ) ) {
$attributes['rel'] = 'bookmark nofollow';
}
return $attributes;
}
add_filter( 'astra_post_title_anchor_attributes', 'customize_post_title_anchor_attributes' );
What’s Fixed?
- Heart button color is missing for students in LifterLMS lessons page to mark as favorite.
- Resolved an issue where cart widget css not loading properly on Cartflows checkout page.
- Resolved an issue where the theme preview was not visible on the wp.org themes page.
- Resolved an issue where extra white space appearing on the sides of the layout on certain screen sizes after the recent update.
Upgrade to Astra 4.8.12 today for a smoother, more optimized experience.
For more details, check out our docs or contact us! We’re always here to help.
Thank you for your continued support and trust in Astra.
Best,
Team Astra