Viewing 5 replies - 1 through 5 (of 5 total)
  • hiding the post author can be done with a plugin… search plugins for hide author

    hiding the the specific title for an event could be done with CSS…
    I’ll let somebody else chime in on that to do it correctly

    Hi,

    One way would be to add this to the end of the style.css file of your theme:

    .entry-meta {
    display: none !important;
    }

    But if you only want to hide that info from the single event pages, you’d need to create a new version of your themes single.php file called single-event.php, with the entry-meta code removed.

    Thread Starter jugendstachatius

    (@jugendstachatius)

    Hey caimin_nwl,

    your code worked fine for the author and creation date. Thank you!
    The second thing i want to remove from my booking-page is the “header?” and titel of the event. An image to show what i mean is here: https://picload.org/view/drrpddca/unbenannt.png.html

    is there a command like .event header oder .event title to remove them like the entry meta with css?

    This should work:

    .header-callout, .post-title" {
    display: none !important;
    }
    Thread Starter jugendstachatius

    (@jugendstachatius)

    thanks a lot! it worked again ?? you are a genius!

    one last thing. can you tell me how to get the text and text box on full width via css? than im totally done with the booking site ??

    Thanks again for that support
    Philipp

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Remove Event Title + Author’ is closed to new replies.