All events show same banner. How do we fix this?
-
Greetings,
Initially, we installed the free version of this plugin but could not figure out how to replace the default banner.
So, yesterday, we purchased the premium version AND still could not figure out how to replace the default banner.
I followed several topics about this issue and found one that allowed us to replace the default banner with our custom banner.
The code is below:
function default_event_banner($image_url)
{
$image_url = ‘{Your custom logo here}’;return $image_url;
}
add_filter(‘event_manager_default_event_banner’, ‘default_event_banner’);The problem with the code above is it gives you same logo for every event you create.
That’s not what we want.
Does this plugin allow for a different logo for each event submitted?
- The topic ‘All events show same banner. How do we fix this?’ is closed to new replies.