Also is there a way to make the events only show the image on the [events] list and not the information panel?
Hi @sicariusalex,
First, you need to override template file called “content-event_listing.php” by following this doc https://wp-eventmanager.com/template-files-override/
<a href="<?php display_event_permalink(); ?>" remove the diplay event permalink function and apply your custom function here.
If you just do this then it won’t be redirected to single event page. If you are still not sure then please create support ticket here https://support.wp-eventmanager.com
Thank you
How can I customize the event summary? I want to add a button and centre the event name and text.
-
This reply was modified 6 years, 7 months ago by
sicariusalex.
Hi @sicariusalex,
Once you have overridden the template file to your theme side you need to make adjustments in the template file called content-event_listing.php.
Add button or anything you want to add in the theme side template file.
If you want to center the event name then you need to add the following CSS to your theme’s custom CSS section
.wpem-event-title {
text-align: center;
}
If you are still not sure then please create a support ticket https://support.wp-eventmanager.com
Thank you
Thanks a lot. Do you have documentation with all the css tags for each element?
Also: Is there any way to make the wordpress search bar on header only look for events?
-
This reply was modified 6 years, 7 months ago by
sicariusalex.
Hi @sicariusalex,
We don’t have documentation for the CSS and tags for each element. If you are experienced with HTML and styling then you can easily do it without checking the documentation.
I would suggest you assign the customization to any experienced developer.
Thank you
One last thing, I’m editing the search.php file and want to make it display only events results. How would i do this?
Hi, Ignore my previous question I have resolved the issue. Thanks for all your help.