Add/register post type for section loops

Hi,


I am wanting to add a custom post type into the section loop but I am not having any success. I have tried to add the following to my betheme-child/function.php file:

What is the proper way to do so?


Thanks!


add_action('init', 'child_theme_add_events_post_type_support');

function child_theme_add_events_post_type_support() {

  add_post_type_support('tribe_events', 'mfn-seo');

  add_post_type_support('tribe_events', 'mfn-post-likes');

}


add_filter('mfn_register_builder_post_types', 'child_theme_register_builder_post_types');

function child_theme_register_builder_post_types($post_types) {

  $post_types[] = 'tribe_events';

  return $post_types;

}

Comments

  • Hi,

    What you ask for requires file customization which in reference to Item Support Policy, is not allowed. http://themeforest.net/page/item_support_policy

     So if you want to modify files and don't know how, you should contact your web developer. Item Policy says:

    Item support does not include services to modify or extend the item beyond the original features, style, and functionality described on the item page. For customization services that will help you tailor the item to your specific requirements, we recommend contacting the author to see if they privately offer paid customization services or checking out the great service providers on Envato Studio.

    Thanks

  • Thank you for your reply, I bought this theme because I thought it supported theeentscalendar plugin, but I am unable to get the events to populate in the section loop :(

  • We support the events calendar but did not include it in the query loops.

    There is much functionality from this plugin that we do not have an influence on, so it will not work out in the query loops.


    Best regards

Sign In or Register to comment.