Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Andy Fragen

    (@afragen)

    You have a #tribe-events #legend li { float: right; } in some custom css that is causing this.

    The actual order comes out alphabetically by category slug.

    Plugin Author Andy Fragen

    (@afragen)

    To rearrange the legend order you can do something like the following.

    add_filter( 'teccc_get_terms', function( $categories ) {
    	return array_reverse( $categories );
    } );
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Custom order for legend’ is closed to new replies.