Although most of the button labels in MemberVault are fixed, there are a couple of coding workarounds to override these defaults.*
You can use custom Javascript to achieve this. Go to "Settings" - "General" in the left side menu of your admin dashboard, then scroll down to "Advanced Settings".
Copy and paste the code provided below in the Custom Javascript area, and customize your button text by replacing the "Learn More" and "View Product" section 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 members. 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 and member sections. So to test, visit your account's main page and/or login as a test member.
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
Related Articles:
Questions? Reach out to us at hello@membervault.co, within our Facebook group, The MV Collaborative, or via chat support within your admin account (not sure how to log in? look up your account here).

