My problem is with the magic selection frontend.
Looks weird for a user to have wording like
Trucks Add Trucks
Its should be like
Trucks Choose…
or something like that.
I went to the modjak2filter and at helper.php line 654 and changed
$txt = JText::(‘JAADD’).’ ‘.$fieldtitle;
to
$txt = JText::_(‘JAADD’);
and change the JAADD through language files and it is exactly what I want.
The question is, How and if I can I do this so the change persists through updates via joomla overrides and or if on the next version you can put an option to disable the $fieldtitle if a user wants.
Thank you in advance