Customizing Button Text
Erin Kelly avatar
Written by Erin Kelly
Updated over a week ago

Although most of the button labels in MemberVault are fixed, there are a couple of workarounds to overriding these defaults.*

You can use custom Javascript to achieve this. Simply go to Settings / General. On the right-hand side, expand the Advanced Settings and locate the Custom Javascript box.

Copy and paste the code provided below in the Custom Javascript area, and customize your button text by replacing the text noted in red and save. An example is provided below.

You can currently override the "Learn More" & "View Product" buttons text.

*This method DOES come with a few warnings:

  • Be careful copying and pasting this code exactly and don't edit anything outside the single quotes that reference the words you wish to adjust (unless you know what you're doing). You could introduce a Javascript error that will break things for your users. If something does get messed up, you can delete everything in the box, save and try again.

  • You won't see these changes in the admin preview. It will only show up on the public teaser and user sections. So to test, visit your account's main page and/or login as a test user.

  • You might experience a "flicker" when the page loads as the custom code swap out the default text for the custom text. This is normal and not a bug.
    Here is the code:

    <script>
    $( document ).ready(function() {

    $('.js_mv_label_learn').html('Custom Learn More');
    $('.js_mv_label_view').html('Custom View Product');


    });
    </script>

In this example, we've swapped out the terms as follows:

Learn More > changed to More Info
View Product > changed to Access Now

Please also see:



Questions? Reach out to us at hello@membervault.co, via chat support within your Admin account (available to paid users), or within our FB Group, The MV Collaborative.

Did this answer your question?