Okay
  Public Ticket #2588626
Events
Closed

Comments

  • Jake Stebbings started the conversation

    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.

  •  1,101
    Max replied

    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

  • Jake Stebbings replied

    What would then be the best way to hide the single event day and while we are there, the '@' before the venue?

  •  1,101
    Max replied

    Can you show me a screenshot with the specific element you want ton hide ?


    Thanks,


    Max from the Sonaar.io Crew

  • Jake Stebbings replied

    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?

  •  1,101
    Max replied

    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

  • Jake Stebbings replied

    Thanks!

  • Jake Stebbings replied

    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

  •  1,101
    Max replied

    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

  • Jake Stebbings replied

    Thank you, and to have the venue centered rather than below the title?

  •  1,101
    Max replied

    Give me your page url so I can see how its looking and to check the code


    Thanks,


    Max from the Sonaar.io Crew

  •   Jake Stebbings replied privately
  •  643
    Alexandre replied

    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

  • Jake Stebbings replied

    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

  •  643
    Alexandre replied

    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

  • Jake Stebbings replied

    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/

  •  1,101
    Max replied

    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