ESS
January 28, 2025 at 7:37 am
Hi,
I am using a shortcode to display an event ticket selector on a page on my site. I plan to use three short coded to show three different tickets and would like to hide specific info from the ticket selectors on this page only. DataTimes, sales dates, access, etc.
I have tried using the CSS examples others have shown in the Appearance, Customize, Additional CSS, but no success.
Any advice?
Tony
January 28, 2025 at 3:47 pm
Add New Note to this Reply
Hi there,
Can you link me to the page(s) in question so I can take a look?
ESS
January 28, 2025 at 4:02 pm
Add New Note to this Reply
This reply has been marked as private.
Tony
January 28, 2025 at 4:08 pm
Add New Note to this Reply
This reply has been marked as private.
ESS
January 28, 2025 at 4:36 pm
Add New Note to this Reply
Hi.
Oh. I see. Having the description and price parts would be ok.
But if I had to lose everything in the show details expanded view that might be ok too.
Thanks
ESS
January 28, 2025 at 4:44 pm
Add New Note to this Reply
This reply has been marked as private.
Tony
January 28, 2025 at 4:47 pm
Add New Note to this Reply
If you highlight the specific sections you want to remove I can give you the CSS to do it.
But to remove the Sale Dates section you can use:
.tckt-slctr-tkt-sale-dates-sctn {
display:none;
}
Access section:
.tckt-slctr-tkt-datetimes-sctn {
display:none;
}
Prefix those with .page-id-449
and/or combine them together:
.page-id-449 .tckt-slctr-tkt-sale-dates-sctn,
.page-id-449 .tckt-slctr-tkt-datetimes-sctn {
display:none;
}