The Avada theme is a wonderful addition to any WordPress site, but it does come with a few bits that limit the functionality – not much, but enough to frustrate while putting the finishing touches to your new website.

One such minor grip is the Related Posts Carousel element.   The element itself is great, but it does come with a few issues out of the box, namely the heading text of the section and the meta information under each portfolio post.

Luckily, the fix isn’t a difficult one.

To change the Related Projects text, you could use the theme framework and edit the code, but a quick and easy way is to add some jQuery to your theme options.  To change this text, first navigate to your Dashboard and then to the Avada > Global Options > Advanced section using he left navigation pane.

Then simply add the following to the Space before </head> section.

<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('.related-posts > div > h3').html('Related Artwork');
});
</script>

To hide the meta information under each individual carousel post, a little CSS will finish the job for you.   Simply add the following to the Avada > Options > Custom CSS section of the Dashboard, OR add it to the individual page via the Custom CSS box there.

div.fusion-carousel-meta { display:none; }