Page 1 of 1

Remove Top Link Booking a property

PostPosted: 31 Aug 2014, 03:27
by skleveno
How can i remove the top link that says "Booking a property"

Also just want to confirm i can change the pinkish color to blue or black under the style.css?
and
Is it possibly to remove all the facebook, twitter, google+ buttons on the main page?

Thanks a zilllllion.

Re: Remove Top Link Booking a property

PostPosted: 01 Sep 2014, 01:41
by skleveno
Update: I was able to remove the facebook links etc... Only thing I have left is to remove "booking a listing link on top" // I don't see that option anywhere in the control panel or theme options in php files.. thanks!

Re: Remove Top Link Booking a property

PostPosted: 12 Sep 2014, 07:12
by Koduc
skleveno wrote:Only thing I have left is to remove "booking a listing link on top" // I don't see that option anywhere in the control panel or theme options in php files.. thanks!

File is: /protected/components/Controller.php
Code:
Code: Select all
            array('label' => '|''visible' => Yii::app()->user->getState('isAdmin') === null && Yii::app()->theme->name == 'classic'),
            array(
                
'label' => tt('Reserve apartment''common'),
                
'url' => array('/booking/main/mainform'),
                
'visible' => Yii::app()->user->getState('isAdmin') === null,
                
'linkOptions' => array('class' => 'fancy'),
            ),