The only way I can see this is to add the date within your event title..Our event post type is not made to fully support multiple-days event im afraid.
But we are going here beyond the scope of our support. This customization was not really tested before and maybe this will cause some unwanted reaction.
I dont undertsand what you mean, but anyway, at this point you have to customize this by yourself. This is beyond the scope of our support. I hope you understand we cant do this kind of request for each customers. We still can help, but you have to use our custom work service: https://sonaar.io/service/website-customization-service/
Please note that this code is not backed by any javascript and we have not tested it intensively so use at your own risk. By example, if you have very long event title names, there might be some visual issues.
I would like an event listing to display a date range rather than a single day. e.g.
Thu 26 - Sat 28 Aug | Venue A - Book Now
Tue 31 Aug - Sat 4 Sep | Venue B - Book Now
I'm trying to figure out a way around the single day on the listing for scheduled posts.
The only way I can see this is to add the date within your event title..Our event post type is not made to fully support multiple-days event im afraid.
Thanks,
Max from the Sonaar.io Crew
What would then be the best way to hide the single event day and while we are there, the '@' before the venue?
Can you show me a screenshot with the specific element you want ton hide ?
Thanks,
Max from the Sonaar.io Crew
Ideally, I'd like to format the title like the date on the side. But from what I'm gathering that may not be possible?
You can remove the date columns by adding this to your custom css (wp-admin > theme options > custom css):
.sr-it-event-date {
display: none;
}
@media (min-width: 769px){
.sr_it-event-main {
border-left: none;
}
}
Thanks,
Max from the Sonaar.io Crew
Thanks!
I'm still not getting the desired results.
I'd like to hide the "@" symbol and the "|" separator on the venue venue details. I can't see a class for this.
I would also like to have the venue centered rather than below the title.
Images attached
Go to wp-admin > theme options > translation and replace the strings by a ascii empty character which is & #8201 (without a space between & and #)
see screenshot https://d.pr/i/9zWIak
Thanks,
Max from the Sonaar.io Crew
Thank you, and to have the venue centered rather than below the title?
Give me your page url so I can see how its looking and to check the code
Thanks,
Max from the Sonaar.io Crew
Hi Jake,
You can try this custom css code
.sr_it-event-info{
display: inline-block;
}
But we are going here beyond the scope of our support. This customization was not really tested before and maybe this will cause some unwanted reaction.
Thanks,
Alexandre from the Sonaar.io Crew
Thanks for your help so far, I understand this is pushing the scope of what you guys have designed.
That works quite well but it aligns them all based on the length of the event title. Is there any way to get a uniform alignment?
TIA
Hi Jake,
I dont undertsand what you mean, but anyway, at this point you have to customize this by yourself. This is beyond the scope of our support. I hope you understand we cant do this kind of request for each customers.
We still can help, but you have to use our custom work service: https://sonaar.io/service/website-customization-service/
Thanks,
Alexandre from the Sonaar.io Crew
I'm asking for an event layout that is the default in your other themes
https://ibb.co/hXzBNpd
https://irontemplates.ticksy.com/ticket/2433006/
Hi Jake,
The themes are different so you cant have exactly the same thing.
but please use this custom css to have the event title centered into your event row:
@media (min-width: 769px){
.sr_it-event-title{
position: absolute;
left: 20px;
}
.sr_it-event-info{
display: inline-block;
}
.sr_it-event-main {
display: block;
max-width: unset !important;
text-align: center;
}
}
Please note that this code is not backed by any javascript and we have not tested it intensively so use at your own risk. By example, if you have very long event title names, there might be some visual issues.
Thanks,
Max from the Sonaar.io Crew