• Resolved GDeFRA

    (@gdefra)


    Hi,

    How to delete the default icon that appears in an event?

    I created an event with text + 1 garden photo

    The event page first displays a big black building icon before the published photo

    thank you for your reply
    Have a good day

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @gdefra

    You have to remove image tag from the template file called content-single-event_listing-organizer.php

    Do not change plugin template files please override template file to your theme side by following this https://www.wp-eventmanager.com/template-files-override/

    Thread Starter GDeFRA

    (@gdefra)

    Namaste Hiteshmakvana

    I followed the instructions but it does not change anything.

    In the .php file there is no occurrence using an image

    But I’vefound the image in plugins / Wp-event-manager / assets / images
    organizer.png
    Do I have to delete this file?

    Hi @gdefra
    On this file you will see the code for organizer logo <?php display_organizer_logo(); ?>
    Please remove that line. If you want to change the default logo please add below code to your theme’s function file with your default image path

    add_filter('event_manager_default_organizer_logo','your_custom_organizer_logo');
    function your_custom_organizer_logo(){
    	return 'PLEASE ADD YOUR IMAGE PATH HERE';
    }

    Thank you

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How Remove defaut Icon ?’ is closed to new replies.