Hiding booking data text
Cita de Yiorgos P. en 01/09/2020, 12:24 AMHello,
Is this possible to hide pickup-return fees from booking pages only in frontend?
Hello,
Is this possible to hide pickup-return fees from booking pages only in frontend?
Cita de WP Car Rental en 01/09/2020, 2:20 AMHello Yiorgos,
Not out of the box. Simpler way for this would be with CSS, for example:
.booking-data-group:not(:first-child) .booking-data-group-item:last-child { display: none; }
Regards.
Hello Yiorgos,
Not out of the box. Simpler way for this would be with CSS, for example:
.booking-data-group:not(:first-child) .booking-data-group-item:last-child { display: none; }
Regards.
Cita de Yiorgos P. en 01/09/2020, 8:54 AMIt was not working initially.
So i added an !important rule at the end so work is done. Thank you!.booking-data-group:not(:first-child) .booking-data-group-item:last-child { display: none!important; }
It was not working initially.
So i added an !important rule at the end so work is done. Thank you!
.booking-data-group:not(:first-child) .booking-data-group-item:last-child { display: none!important; }