Events plugin: How to remove "Category" and "Search" from "List View" / Remove default colors / "Event detail"

Hello please see this page: https://thriveathome.wpengine.com/upcoming-seminars

I am using the shortcode for list view but do not want the category or search area to show up. How can I remove that whole block?


How can I remove the blue color under the date and anywhere else this blue color appears


Also how do I change the wording for “Event Detail”


Thanks!!!

1 Like

Hello @metrostar,

Thanks for asking. :slight_smile:

  1. Please add following CSS under Pro > Launch > Theme Options > CSS to hide category and search box:

.mec-wrap .mec-totalcal-box {display: none;}

  1. Please add following JS code under Pro > Launch > Theme Options > Js to change Event detail text:

jQuery(document).ready(function($) {$('.mec-detail-button').each(function() {$(this).text('Read More');});});

You can replace Read More from above code as per requirement.

Thanks.

That worked perfectly thanks.

1 How can I replace the default blue color under the date with the color I selected (purple)

2 How can I make the slug in breadcrumbs that says EVENTS > to say UPCOMING SEMINARS

Thanks so much!

Hello @metrostar,

Thanks for updating. :slight_smile:

  1. You can add following CSS under Pro > Launch > Theme Options > CSS to change the color:
    .mec-month-divider span:before{border-bottom: 4px solid #800080;}

  2. You just need to edit the page title on which Event calendar Shortcode has been implemented.

Thanks.

Thank you the CSS worked for the blue but editing the page title doesn’t affect the global “events” breadcrumbs. If you are on the event page: https://thriveathome.wpengine.com/events/test-introductory-seminar-event-page/ It wants to go back to “EVENTS” or /events - the main events category page but I have it 301 redirecting to Upcoming Seminars. I want to get EVENTS out of the breadcrumbs and replace it with UPCOMING SEMINARS

Thanks for the help!

Visiting the link you provided does not redirect to the /events page like you said. Please clarify if I don’t understand you correctly and try to clear your browser cache. Also, try in incognito.

Now, visiting /events redirects me to https://thriveathome.wpengine.com/upcoming-seminars/

To change the text of event, please add this code in Appearance > Theme Options > Global JS.

jQuery('.x-breadcrumbs a:nth-child(3)').text('Upcoming Seminars');

Thanks.

Hi thank you that JS worked and thanks for all the help it all worked perfect AND thanks for adding events plugin to the array! I had no idea it was in there!!

You’re welcome. Glad we could help. :slight_smile:

Hello a few more issues with fonts:

  1. How can I make the fonts within events the same as the rest of my site or otherwise customize them. If you look at the event page the fonts are tiny and not the same as the rest of the site: https://thriveathome.wpengine.com/events/test-introductory-seminar-event-page/

  2. How can I alter the size / font of the list view titles:
    https://thriveathome.wpengine.com/upcoming/

Thank you!

NM I figured it out via Inspect

Glad to know all is in order now,

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.