How do I hide the Driver / Passenger title on the Home screen of the Cab Ride feature?
Follow the instructions below if you want to hide the driver/passenger title on the home screen of the Cab Ride feature.
1) Log into your App Manager and select your app.
2) Click Colors from the left-hand-side of the screen (or the middle of the screen).
3) Scroll down to the Advanced SCSS box. If there is already code in the advanced SCSS box, do not remove it. Start a new line “after” the last character in the box, then paste the above code.
/*** BEGIN: CAB RIDE - REMOVE PASSENGER/DRIVER TITLE FROM HOME ***/
.cabride .cr-user-choice .cr-passenger {
color: transparent !important;
}
.cabride .cr-user-choice .cr-driver {
color: transparent !important;
}
/*** END: CAB RIDE - REMOVE PASSENGER/DRIVER TITLE FROM HOME ***/
4) Click Save.