Changing the Pay Offline button label for event registration to Pay by Check
My club members are used to being able to pay by check at the door for our monthly events. We are new to Wild Apricot and the Pay Offline button is confusing to some of the older members. Can someone help me with how to change the label on that button to Pay by Check?
-
Ted Hattemer commented
Find the nearest div or span tag by using "Inspect Element" option (right click the button in most browsers.) Note the class element's attribute - ie it's name. Example: <div class="buttonclass"> Place a custom HTML gadget at the bottom of the page where you want the change. Paste javascript into the Code section. <script> $( "div.buttonclass" ).replaceWith( "<button type="button">Pay by Check</button>" ); </script>