• Resolved dillydally

    (@dillydally)


    I have selected Page as the default for the single event page in settings.
    I think what it is doing is still publishing as a post. It looks like the date on the left is the date I created the event. I have also tried to use my theme layout pages but that doesn’t work either (which is noted in the documentation)

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support angelo_nwl

    (@angelo_nwl)

    You can try to use custom CSS to hide the entry meta

    e.g.

    
    .entry-meta {
        display: none;
    }
    
    Thread Starter dillydally

    (@dillydally)

    I have tried adding this to the child-theme css, and added it in the Single event page formatting section (see below). Can you tell me what I am doing wrong? It is still not working.

    <div style=”entry-meta:display: none;”>

    <div style=”float:right; margin:0px 0px 15px 15px;”>#_LOCATIONMAP
    <p>
    Date/Time<br/>
    Date(s) – #_EVENTDATES<br /><i>#_EVENTTIMES</i>
    </p>
    {has_location}
    <p>
    Location<br/>
    #_LOCATIONLINK
    </p>
    {/has_location}
    <p>
    Categories
    #_CATEGORIES
    </p>
    <br style=”clear:both” />
    #_EVENTNOTES
    {has_bookings}
    <h3>Bookings</h3>
    #_BOOKINGFORM
    {/has_bookings}

    </p>
    </div>
    </div>`

    Plugin Support angelo_nwl

    (@angelo_nwl)

    You can add this at the end of your theme style.css

    
    .entry-meta {
        display: none;
    }
    
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Page display selected still posts as Post?’ is closed to new replies.