- Event listing styling and fonts problem
- Dealing with problematic themes
- Enable Trace and Debug Javascript file logs
- Event listings not showing up in the [events] page
- Event listings throw 404 page error
- Events don’t display until RESET is pressed
- Woocommerce cart fragment-jquery cookie problem
- How to add my registrations on my account page
- Add custom field in Search filter
- Adding a country field for events
- Change Default Events Listing View
- Changing Login Redirects
- Changing the event slug/permalink
- Changing the priority of field for event submission form
- Create Child Theme
- Create default image path filter
- Create or pick categories from Free/ Core WP Event manager
- Create single event template with Elementor Pro
- Creating a custom event search form
- Cron Job
- Editing Event Submission Form Fields
- Event Detail Page
- Event List with Elementor plugin
- Hide and Add column from the Event Dashboard
- Importing Event Listings With WP All Import Pro
- Limit the banner Size
- List of all the default template and fields given in core and Premium Add-ons
- Ordering Events By Event Start Date / meta key
- Remove existing field from event submission form
- Remove the Preview Step
- Translating WP Event Manager
- Validate submit event field Snippets
- Visual Composer
- How to display additional custom fields on a single event page?
- How to Disable Social Media share links?
- How to delete an expired event by time
- Disable Any theme timepicker
- Hide Additional Information Section from Single Event Page
- How To Remove Duplicate Event Type Meta Box While Using Gutenberg Editor
- How To Add My Registrations on My Account Page
- Hide Comment on Single Event Listing Page
- Multilingual Website Using WPML
- How to override archive template
- How to allow comment forms on each event?
- How to allow organizers to add images in the description box
- Add a custom field in the search form on the event dashboard
- How to replace default event banner placeholder image
- Show all articles ( 24 ) Collapse Articles
- Emails
- Attendee Information
- Bookmarks
- Colors
- Contact Organizer
- Embeddable Event Widget
- Event Alerts
- Event Calendar
- Event iCal
- Event Slider
- Event Tags
- Export Events
- Google Analytics
- Google Maps
- Google reCAPTCHA
- Organizers
- Recurring Events
- Registrations
- Sell Tickets
- Woocommerce Paid Listings
- Zoom
- Stripe Split Payment
- Show all articles ( 7 ) Collapse Articles
- Attendee limit on registration addon
- Change the domain of license key (license key migration )
- Editing registration form fields
- Event tag snippets
- Existing Licence Key Activation
- Exporting Registrations
- Facebook Preview
- Field restriction on the registration form without sell ticket and attendee information
- Hide/Show registration button on specific events
- How to show Ticket Price
- Send an email notification to the organizer when a event is approved
- How To Install WP Event Manager Add ons
How to replace default event banner placeholder image
Created On
Last Updated On
0 0
- Main
- WP Event Manager Tutorials
- How to replace default event banner placeholder image
Replace default event banner placeholder image
In order, to add the default image in the banner, when someone does not submit any event banner, you can add the following code,
- Open your child theme,
- Add the code into the funtions.php file:
<?php add_filter( 'event_manager_default_event_banner','your_theme_slug_default_event_banner'); function your_theme_slug_default_event_banner($image_path){ $image_path = 'YOUR IMAGE PATH HERE'; return $image_path; } ?>
- Save.
Was this article helpful?
Quick Links