Hi Brian,
the search module is the standard advanced search module from jReviews with my custom fields inside. The only things i change are the headers of the varius field groups and putting some CSS classes in the global CSS of my jReview template.
For the headers I add language strings to the original Joomla language.ini files in the language folders in my Joomla root.
here is a code snippet of the module:
<!-- HEADER -->
<div class="jr_mod_search_header"><?php echo JText::_( 'JR_SM_HEADER' ); ?></div>
<div class="jr_mod_search_grp_header"><?php echo JText::_( 'JR_SM_TYPE_HEADER' ); ?></div>
<!-- TYPE -->
<div class="jr_mod_search_text"><?php echo JText::_( 'JR_SM_TYPE' ); ?><br />{category}</div>
<!-- DESTINATION -->
<div class="jr_mod_search_text"><?php echo JText::_( 'JR_SM_DESTINATION' ); ?><br />{jr_location}</div>
<div class="jr_mod_search_text">
<input type="submit" name="advanced_button" value="<?php __t("Search");?>" class="button" />
</div>
<div class="clr"></div>
<!-- STARS -->
<div class="jr_mod_search_grp_header"><?php echo JText::_( 'JR_SM_STARS' ); ?></div>
<div class="jr_mod_search_text">{jr_stars}</div>
and so on...
All the mods applied to my site are already done by others here on the forum or explained by Alejandro in the documentation area... Eccept the language strings in the Joomla! core language files... this choice where done after varius tests in the jReviews language files without luck...
It will be nice if Alejandro will add the language like in other Joomla! components in the Joomla! language folders... I have to add my strings on the core language files before every Joomla! update...
Regards