Change the cost amount in the drop down

Home Forums Calendar Products Filter Bar Change the cost amount in the drop down

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #947002
    mariacp04
    Participant

    Hi! I have been going crazy trying to figure a way to change the cost of events in the “cost” dropdown in the filter bar –
    the site is under-development, so I cannot provide a URL. I am stuck and really need assistance.

    #947214
    Barry
    Member

    Hi there mariacp04,

    You can modify the values of any filter – including the cost filter – by using this hook:

    tribe_events_filter_values

    A minimal example would look a bit like this:

    add_filter( 'tribe_events_filter_values', 'modify_cost_filter', 10, 2 );
    
    function modify_cost_filter( $values, $filter_slug ) {
        // We're only interested in the cost filter here
        if ( 'cost' !== $slug ) return $values;
    
        // Prepare your alternative costs according to your particular needs
        $costs = array( 
            array( 'name' => '1-100',    'value' => '1-100' ),
            array( 'name' => '101-1000', 'value' => '101-1000' )
        );
    
        // Replace the defaults with your new options
        return $costs;
    }

    (You might add your custom code to your theme’s functions.php file or else a standalone plugin.) I hope that helps!

    #951873
    Barry
    Member

    Hi! It’s been a while so I’m going to go ahead and close this thread. If we can help with anything else, though, please don’t hesitate to create new threads as needed. Thanks!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Change the cost amount in the drop down’ is closed to new replies.