Hello,
So I have not used the Avada’s theme to give an accurate solution
but I think you can change the aria-label text using custom css and javascript
1. Access Your WordPress Dashboard: Log in to your WordPress admin panel.
2. Navigate to Theme Options: Go to “Avada” > “Theme Options.”
3. Custom CSS: In the Theme Options, look for a section where you can add custom CSS. This is usually found under the “Custom CSS” or “Additional CSS” tab.
4. Add CSS to Target the Button: Use CSS to target the “Read More” button and set a new aria-label. For example:
.read-more {
aria-label: "Read more about this article";
}
5. Save Changes: Save your custom CSS.
6. JavaScript: If the theme’s behavior is controlled by JavaScript, you may also need to use JavaScript to change the aria-label dynamically. Add a custom JavaScript script that targets the “Read More” button and updates the aria-label attribute as needed.
7. Save JavaScript: If you use JavaScript, make sure to include it in the appropriate place, like the footer or in a JavaScript file that is loaded on the page.
I hope this gives you the solution you are looking for