Remove or Hide Location, Organizer, Event Website and Event Cost

Home Forums Welcome! Pre-Sales Questions Remove or Hide Location, Organizer, Event Website and Event Cost

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1568687
    Travis Olson
    Participant

    Is there a way in the backend of the site to hide the Location, Organizer, Event Website and Event Cost sections in the add new area?

    #1569451
    Sky
    Keymaster

    Hi there!

    Thanks for reaching out. I will try to help with your question.

    You could add some custom CSS to the admin page to achieve this.


    add_action('admin_head', 'my_custom_fonts');
    function my_custom_fonts() {
    echo '<style>
    #event_tribe_organizer, #event_url, #event_tribe_venue, #event_cost {
    display: none;
    }
    </style>';
    }

    Add the above snippet to your child theme’s functions.php or to a functionality plugin.

    Let me know if that helps!

    Thanks,
    Sky

    #1585193
    Support Droid
    Keymaster

    Hey there! This thread has been pretty quiet for the last three weeks, so we’re going to go ahead and close it to avoid confusion with other topics. If you’re still looking for help with this, please do open a new thread, reference this one and we’d be more than happy to continue the conversation over there.

    Thanks so much!
    The Events Calendar Support Team

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Remove or Hide Location, Organizer, Event Website and Event Cost’ is closed to new replies.