Custom Layout for Organizer and others

Home Forums Calendar Products Events Calendar PRO Custom Layout for Organizer and others

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #1469271
    dobie
    Participant

    I use advanced custom field and wonder loop plugins for customize post layout. How could I use them or something similar to custom the organizer’s profile or such in event calendar?

    #1470035

    Hi Dobie,

    Thanks so much for reaching out!

    The following article can provide you with some more information about how to add custom fields to the Organizer page:

    https://theeventscalendar.com/knowledgebase/additional-fields-for-venues-and-organizers/

    Let me know if that helps!

     

    Thanks,

    Jaime

    #1472938
    dobie
    Participant

    I added the following as suggested in my theme’s functions.php, but don’t see them appearing anyway. There are quite number of fields that I created using advanced custom field and they appear in the event editor, but none appears with only the default time, url and phone. The field group is “Business member profile” in the advanced custom field. Should I replace the “custom-fields” with this name “Business member profile”? Furthermore, I am not sure what are the custom fields you are referring to? From other plugin or not?

    /**
    * Enable custom field support for organizer posts.
    *
    * @param array $args
    * @return array
    */
    function tribe_organizers_custom_field_support( $args ) {
    $args[‘supports’][] = ‘custom-fields’;
    return $args;
    }

    add_filter( ‘tribe_events_register_organizer_type_args’, ‘tribe_organizers_custom_field_support’ );

    #1473166

    Hi Dobie,

    You can use the Additional Fields feature which can be found in Events Settings < Additional Fields, and have these fields displayed on your Organizer page using the tutorial that I provided you with.

    You can try an integration of ACF on your own, but I cannot provide further support on this as per our Support Policy.

    Let me know if you have any other questions on this topic!

     

    Thanks,

    Jaime

    #1474504
    dobie
    Participant

    I have added a field ‘test’ which is a text area for testing and also added the following in the functions.php
    However, it appears on the event edit page, but not for organizer. I want to add fields in the organizer, not only email, telephone and Url, but also business profile and etc. Have I done any wrong or missing anythings?

    additional field “test”

    Followings added to functions.php

    /**
    * Enable custom field support for organizer posts.
    *
    * @param array $args
    * @return array
    */
    function tribe_organizers_custom_field_support( $args ) {
    $args[‘supports’][] = ‘custom-fields’;
    return $args;
    }

    add_filter( ‘tribe_events_register_organizer_type_args’, ‘tribe_organizers_custom_field_support’ );

    #1474982

    Hi Dobie,

    In order for your custom fields to show up on the front end as well, you will need to add an additional snippet, as outlined in the article that I referenced:

    https://theeventscalendar.com/knowledgebase/additional-fields-for-venues-and-organizers/

    Here is that snippet:

    https://gist.github.com/theeventscalendar/4c042e8da31ee33e684c

    Let me know if that helps!

     

    Thanks,

    Jaime

    #1493586
    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 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Custom Layout for Organizer and others’ is closed to new replies.