Title for Community Page not taking

Home Forums Calendar Products Community Events Title for Community Page not taking

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1192903
    John
    Participant

    I used the code below that you guys recommended to adding a page title to the Event submission page
    add_filter(‘tribe_ce_event_list_page_title’, ‘change_the_title’);
    function change_the_title() {
    return ‘Submit Your Event’;
    }

    But..when you go to the page…there is no page title…not sure what I’m missing. Check below :
    http://144.208.76.174/~esplja5/events/community/add

    #1193042
    Andras
    Keymaster

    Hi John,

    Thanks for reaching out and sorry about the issue with the title. I can help you out with this.

    There is a confusion here, maybe from our side. 🙂

    The snippet you posted changed the title of the “My Events” page.

    To change the tile of the “Submit an Event” page you need a slightly different one. Try with this. I tested is locally and it worked:
    add_filter('tribe_ce_submit_event_page_title', 'change_the_title');
    function change_the_title() {
    return 'Submit Your Event';
    }

    Make sure that you are using straight quotes (‘) and not curly ones (’), as they can cause errors.

    Also check if your theme or the page template you are using allows the page title to be shown.

    Let me know if this helps.

    Cheers,
    Andras

    #1193621
    John
    Participant

    This reply is private.

    #1194169
    Andras
    Keymaster

    This reply is private.

    #1194230
    John
    Participant

    Check the attached images…My single and page template both have the standard structure including a page title

    #1194757
    John
    Participant

    Also, I did try your recommendation of changing the theme…and it shows the same thing..see below

    #1195231
    Andras
    Keymaster

    This reply is private.

    #1205261
    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 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Title for Community Page not taking’ is closed to new replies.