Support

Account

Home Forums Feature Requests Button Label for Flexible Content

Solving

Button Label for Flexible Content

  • I love that you can customize the Button Label for Flexible Content. Can you make it so that the button label is also used for the tooltip text when you hover over the “+” button at the top of each flexible content entry? The text I entered for the button label is used in the button on the bottom, but the tooltip text still uses the default “Add layout” label…I think this makes for less than ideal user experience, potentially creating some confusion having 2 different labels for the same action.

    Apologies if this has been brought up before, I could not find a previous discussion of it on the forums. Thanks for considering this suggestion!

  • The button title text should default to the Button Label text but until there’s a fix, you could use some jQuery to alter it:

    
    jQuery(document).ready(function($){
        // for a single button
        $('.your-button').attr('title','some title');
    
        // if you have multiple on the page
        $('.your-button-class').each(function() {
           $(this).attr('title', $(this).text());
        });
    });
    
  • I love that you can customize the Button Label for Flexible Content. Can you make it so that the button label is also used for the tooltip text when you hover over the “+” button at the top of each flexible content entry? The text I entered for the button label is used in the button on the bottom, but the tooltip text still uses the default “Add layout” label…I think this makes for less than ideal user experience, potentially creating some confusion having 2 different labels for the same action.

    Apologies if this has been brought up before, I could not find a previous discussion of it on the forums. Thanks for considering this suggestion!

    Its a old one but still an issue. The button_label works fine, but the tool-tips for delete / add or duplicate are still the old string.

  • You need to contact the developers they do not monitor these forumns

Viewing 4 posts - 1 through 4 (of 4 total)

The topic ‘Button Label for Flexible Content’ is closed to new replies.