Elxis CMS Forum

Support => Installation => Topic started by: WebWalla on February 05, 2011, 18:37:43

Title: IOS Reservations: Change the word "Hotel"
Post by: WebWalla on February 05, 2011, 18:37:43
I have just installed Elxis + IOS Reservations + Philoxenia template.
I can see my new Locations on the frontpage and I have installed 1 new property in one of the new locations.
The problem is that each location mentions "1 Hotel", "0 Hotels", etc.
My system is being used for rental properties (apartments), and not hotels.
So is it possible to replace the word Hotel with Apartment or Property right throughout the site?
I've looked at the template HTML, CSS and other config options bit can't find any way of doing this.
Thanks!
Title: Re: IOS Reservations: Change the word "Hotel"
Post by: webgift on February 05, 2011, 18:46:29
It's a language string. You can change that by editing the file : english.php
Folder : administrator/components/com_reservations/language/

Find the public $HOTELS = 'Hotels'; and public $HOTEL = 'Hotel';
change them to
public $HOTELS = 'Apartments';  and public $HOTEL = 'Apartment';

Save the file encoding UTF-8 Without BOM. You are ready.
Title: Re: IOS Reservations: Change the word "Hotel"
Post by: WebWalla on February 05, 2011, 18:59:45
Ah, OK!
I was mistakenly looking at /language/english/english.php

Thanks!
Title: Re: IOS Reservations: Change the word "Hotel"
Post by: webgift on February 05, 2011, 19:15:32
 ;)