How would I go about eliminating the colons that show up at the end of the field labels (both default and custom) on the event registration form page? I've taken a look through a number of the .php files, but I'm just not sure exactly what I'm looking for. I'm not really a coder, but most of the time I can fake my way through minor modifications without help -- this just isn't one of those times. Could you please just point me to the file I need to modify, and let me know what I'll need to change or delete to get rid of those colons? I'd really appreciate it -- thanks!
The only way to remove those is in the actual php file.
/components/com_dtregister/dtregister.php
Search for this:
<?php echo JText::_( 'DT_FIRSTNAME' );?>:
This is pulling in the field label "First Name". You can see the : at the end right after the language tag. You can remove that colon there. Finding the FIRSTNAME tag will locate the start of any form areas that would have the : and you can just filter down from each of those spots to hit the other fields.
If you are using the Country field, you will need to remove the colon in this file:
/components/com_dtregister/country.htm