Reorder META columns

Home Forums Calendar Products Events Calendar PRO Reorder META columns

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #472029
    realmwebdesign
    Participant

    Hi,

    I would like to reorder the columns with CUSTOM METAs 1st – let me know where this is.

    Thanks!

    #479169
    Barry
    Member

    Hi!

    Do you mean the event meta area within the single event template? If so a short snippet like this – which you could add to your theme’s functions.php file – could do the trick:

    add_action( 'init', 'reposition_additional_fields', 20 );
    
    function reposition_additional_fields() {
    	// Grab a reference to the method used to print additional fields
    	$pro_meta = TribeEventsPro::instance()->single_event_meta;
    	$callback = array( $pro_meta, 'additional_fields' );
    
    	// Reposition the fields
    	remove_action( 'tribe_events_single_event_meta_primary_section_end', $callback );
    	add_action( 'tribe_events_single_event_meta_primary_section_start', $callback );
    }

    Does that help at all here?

    #480246
    realmwebdesign
    Participant

    Gotta love those functions – thanks.. That did the trick!

    #496233
    Barry
    Member

    Awesome, glad that helped 🙂

    I’ll go ahead and close this thread – but if we can help with anything else please don’t hesitate to create new threads as needed and one of the team will be only too happy to help.

    Last but not least, if you have a moment to spare we’d love to hear from you over on our review page if you had any thoughts on The Events Calendar you wanted to share 🙂

    Thanks again!

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Reorder META columns’ is closed to new replies.