I am trying to add attribute support to the Payout model, I have tried with the below code but it doesn’t seem to be working.
Does anyone have an idea why it is not working?
add_filter( ‘hivepress/v1/components/attribute/models’, ‘add_payout_model_att’, 1000, 2);
function add_payout_model_att($models){
$models = array_merge( $models, [ 'payout' => [], ]);
return $models;
}