If you've set the fee for a membership level to zero, your membership level will labelled as Variable in the level list and as Free on subsequent screens.
To remove the Variable and Free labels for all free membership levels, follow these steps:
- Go to Settings then click Global JavaScript (under Site settings).
- On the Global JavaScript screen that appears, copy and paste the following code:
<script type="text/javascript"> $('.levelPrice').each(function(){ if($(this).is(":contains('- Variable')") || $(this).is(":contains('- Free')")){ $(this).hide(); } }); </script>
- Click Save.