HenrietteVB Posted March 14 Share Posted March 14 Hi there! I would like to change the button text on my navigation button on certain pages. Any suggestions how to do this? https://www.vanilse.com/ Thanks! Link to comment
tuanphan Posted March 16 Share Posted March 16 Suppose you want to rename text on Contact Page, you can add this code to Contact Page Header Code Injection. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script> <script> $(document).ready(function(){ $("a.btn").html(function() { return $(this).html().replace("Maak een Afspraak", "new text"); }); }); </script> Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment