Hi,
There is a turnaround using Jquery.
You wrap spaces field with an ID.
{has_spaces}<div id=”spacesID”>content</div>{/has_spaces}
Then you can add Jquery:
//Replace spacesID with your ID
var spaces = $(‘#spacesID’);
//Lets see if spacesID exist on the page DOM
if (spaces.length < 1) (function(){
//If does not exist
spaces.html(‘There are no more spaces for this event’);
}
// If exists, do nothing and let EM set the number of spaces available
else {}
);
Not pretty, but doable.