page title of Community LIST and ADD pages

Home Forums Calendar Products Community Events page title of Community LIST and ADD pages

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #1365933
    LaVonne Ewing
    Participant

    The community event ADD / LIST pages pull the page title bar from my BLOG page settings (using AVADA theme).
    How can I stop this?
    I was able to stop the blog sidebar from showing up on these Community pages, but not sure how I did that!
    I will attach 2 screenshots separately.

    #1366749
    Patricia
    Member

    Hey LaVonne,

    Thank you for reaching out to us!

    For some reason we didn’t receive your screenshots: could you please attach them and also send us the link to your Community Events submission form so we can try to help you to remove this title bar?

    Thanks!

    Patricia

    #1366868
    LaVonne Ewing
    Participant

    very small screen shots are attached (one showing the correct page title
    on the BLOG section, 2nd image showing the LIST page of events where I
    do not want this page title).

    link to submission form:

    https://learn.artcantina.com/workshops/community/add

    #1367662
    Patricia
    Member

    Hi LaVonne,

    Thanks for sending us further information on this! Unfortunately I didn’t receive the screenshots in your previous reply either, but based on what you described, I believe you want to remove this title from Community Events submission form and events list, is that correct?

    “Ideas & Insights for Artists & Makers, Teachers & Students”

    To get started, could you please add the following constant in wp-config.php and let me know if it helps to solve your problem?

    define('TRIBE_MODIFY_GLOBAL_TITLE', true);

    If that constant doesn’t help you, you could add a code snippet like this one in your theme’s functions.php file (I didn’t test, but it might help you to get started):

    add_filter( 'tribe_events_community_form_before_template', 'change_title' );
    
    function change_title() {
        if (tribe_is_community_edit_event_page()){
        ?>
             <style type="text/css">.fusion-page-title-bar .fusion-page-title-row h1{display: none !important;}</style>
        <?php
        }
    }

    I hope this helps! Let me know if you have any other questions and I’ll be happy to assist!

    Best Regards,

    Patricia

    #1369590
    LaVonne Ewing
    Participant

    Your 2nd option worked for the “ADD” page, so half of my original question has been solved.

    I also need to remove the post page title from the …/community/list page (“MY EVENTS”).

    Unrelated question: I changed the wording of EVENTS to WORKSHOPS in EventsPro, but this Community LIST page and the ADD page still says MY EVENTS or ADD NEW EVENT. Where is this controlled? I need it changed to WORKSHOPS.

    #1369937
    Patricia
    Member

    Hi LaVonne,

    I’m glad to hear that this snippet partially helped you to solve the problem!

    If you add the following code to your fucntions.php file as well, does it help you to solve the problem?

    add_filter( 'tribe_community_events_before_list_navigation', 'change_title_in_ce_list' );
    
    function change_title_in_ce_list() {
        if (tribe_is_community_my_events_page()){
        ?>
             <style type="text/css">.fusion-page-title-bar .fusion-page-title-row h1{display: none !important;}</style>
        <?php
        }
    }

    Thanks!

    Patricia

    #1371464
    LaVonne Ewing
    Participant

    That worked. Thanks!

    #1371542
    Patricia
    Member

    Hi There,

    I’m glad to hear that everything is working as expected now!

    Let me know if you need anything else and have a great day 🙂

    Cheers,

    Patricia

    #1388143
    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 9 posts - 1 through 9 (of 9 total)
  • The topic ‘page title of Community LIST and ADD pages’ is closed to new replies.