Edit message on event page so that it doesn't automatically say SOLD OUT
ability to edit the message that appears on event page when waitlist is enabled.
Waitlist option is turned on BEFORE registration opens and would prefer the message not to say SOLD OUT.
-
Malcolm de C commented
Wild Apricot Support (Pavel Scherbinsky) has provided a workaround for this that works well:
You should be able to use this JavaScript code to replace the waitlist message:
<script type="text/javascript">
jq$('.WaGadgetEvents .infoRegistrationIsSoldOut').each(function(){
var textNode = $(this);
textNode.html(textNode.html().replace(/.+/gi, "CUSTOM TEXT"));
});
</script>
Just replace CUSTOM TEXT with a text of your choice and copy it into the editor field at Settings > Site > Global JavaScript.