How do i change the title of the hover on posts

Hi Community,

I was wondering how do i change the text that appears when i hover over the image on my posts?

Hi there,

A quick way to do that is to add this code in the Global JS:

X > Theme Options > CSS:

jQuery('a.entry-thumb .view').text('Read More');

Hope this helps.

I tried that but it didn’t work, any other options?

Hello Carolina,

You have this code in the Global JS:


jQuery( document ).ready( function($) {

    $('.x-index-filters-menu li:first-child a').click();

} );

Try updating it to:


jQuery( document ).ready( function($) {

    $('.x-index-filters-menu li:first-child a').click();
    $('a.entry-thumb .view').text('Read More');

} );

If this still does not work, please provide us with the admin access to your site in a Secure Note:

It worked! Thank you!!!

You’re welcome!
We’re glad @Jade were able to help you out.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.