Hi,
Your WP theme adds these details, can you please provide a link to your calendar page.
Please add the following code to your site css:
.single-ai1ec_event .p-meta {display: none;}
Take care,
Ben
Hello,
I’ve looked up every question in this forum that I could find with CSS code on how to remove the post date from my calendar events, but none of them work for my website. Can you tell me which code will work for my calendar? Here is the URL to the month view of my calendar:
http://www.equipforequality.org/ada-il/calendar/. And here’s a URL to a specific event that has the post date I’m trying to remove:
http://www.equipforequality.org/ada-il/event/criminal-justice-ada/?instance_id=3.
Thanks for any assistance you can provide!
You can also do this in your theme’s function.php file
/**
* Remove post date from event.
*
* Removes Post Dates from Events generated by
* the All in One Event Calendar Plugin by Time
* @link https://ww.wp.xz.cn/plugins/all-in-one-event-calendar/
*
* @since 2.0.0
*
*/
function remove_post_date_from_events() {
/* Get post type of current post*/
$type = get_post_type( $post_id );
/* If the post type is 'ai1ec_event', run filters to remove
* post post date, time, and modification date
*/
if ($type != 'ai1ec_event') {
return;
} else {
add_filter('the_date', '__return_false');
add_filter('the_time', '__return_false');
add_filter('the_modified_date', '__return_false');
}
}
add_action('loop_start', 'remove_post_date_from_events');
I would also like to remove the posting date from the top of my single event pages, but none of the CSS provided in the other threads on this forum works. The calendar page is here http://castletown.ie/calendar/ and a single events page example is here http://castletown.ie/event/soprano/?instance_id=605. Thank you for any help 🙂
I added that line of CSS but the author “admin” is still showing.
@hhrose & @checmark, please create new topics for your issues or inquiries and we will continue there.
Thanks,
Ben
want to hide post date, calendar symbol, comments in my site
http://www.imperialfasteners.in