ephemerapaducah
July 1, 2016 at 10:22 am
I’m using Lorenzo’s workaround found here: https://gist.github.com/lorenzocaum/c49bda15961f9f7d19ab
and the CSS to hide the ticket that isn’t available yet isn’t working. Example here: https://www.ephemerapaducah.com/events/jewelry-richard-salley/
Any thoughts?
Thanks!
Nikki
Tony
July 4, 2016 at 4:07 am
Add New Note to this Reply
Hi Nikki,
Lorenzo’s example CSS is fairly specific to his example in this case.
Your final payment ticket would need to begin with ‘Final Payment’ for that CSS to work, yours ends ‘Final Payment’ so the CSS isn’t working.
We can change the CSS so that is doesn’t matter where the phrase is placed by changing this:
tr.tckt-slctr-tbl-tr.ticket-pending[class*="ee-ticket-final-payment"] {display: none;}
to this:
tr.tckt-slctr-tbl-tr.ticket-pending[class*="final-payment"] {display: none;}
Which means that any ticket that is currently ‘pending’ (sale starts date has not passed) and have ‘Final Payment’ in the name will be hidden.
ephemerapaducah
July 4, 2016 at 4:16 pm
Add New Note to this Reply
That makes total sense and it worked perfectly. Thank you!
Tony
July 5, 2016 at 2:14 am
Add New Note to this Reply
You’re most welcome, Nikki.