Certain parts of a Juicer feed are in English, such as the “Load More” button. If you'd like this to appear in a different language, you can accomplish this using JavaScript. Here's how:
Here is an example that would alter the text of the “Load More” button.
This function should be inserted after your embed code on the webpage, regardless of whether you're using a standard website or a WordPress one.
<script type="text/javascript"> document.addEventListener('juicer:feedLoaded', function(event) { jQuery('.j-paginate').text("Load More in another Language"); }); </script>
In this case, you would replace “Load More in another Language” with the exact translated version of “Load More” that you want to appear.
This is just one example, and you and your development team can write other JavaScript to translate other areas of the feed.
If you have any questions or need any help, please email us at hello@juicer.io.