Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter gunbunnysoulja

    (@gunbunnysoulja)

    Also, to elaborate on the additional front-end table, is it possible to modify the back-end admin table, to include category as well, like I was able to do with front-end?

    Thread Starter gunbunnysoulja

    (@gunbunnysoulja)

    Well I found the group location for the table (not sure how I missed it at events-manager/templates/buddypress/group-events.php… Now I need to figure out why my code of

    <?php $terms = get_the_terms( $EM_Event->post_id, 'event-categories');
    foreach( $terms as $term ){ echo $term->name; }?>

    that works perfect in events-manager/templates/tables/events.php doesn’t work here…. as I’m getting the dreaded Warning: Invalid argument supplied for foreach()

    Thread Starter gunbunnysoulja

    (@gunbunnysoulja)

    Resolved:

    Needs to use

    <?php $terms = get_the_terms( $event->post_id, 'event-categories');
    foreach( $terms as $term )
    { echo $term->name; }?>

    for group-events.php for some reason.

    Plugin Support angelo_nwl

    (@angelo_nwl)

    thanks for the update.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Events Table locations?’ is closed to new replies.