I'm trying to figure how to change the website url for a business in grid view.
Currently in grid view it displays the full url path in the rollover of the business.
I would like to change that so it just says 'website' instead of showing the full url since some of the urls are long and run off the section.
I'm having trouble locating the php file that controls the url render for this section.
Hi Michael,
You must edit the file: {joomla}/components/com_jbusinessdirectory/include/listings_grid_style_2.php on line 78.
You will find this code: class="dir-icon-globe"></i> <?php echo $company->website ?></a>
and you must replace it with: class="dir-icon-globe"></i> <?php echo JText::_('LNG_WEBSITE') ?></a>
This is not an official answer.