Фільтр розрахунку вартості доставки
add_filter( 'mrkv_calculate_shipping_args', 'mrkv_modify_args_by_slug', 10, 2 );
function mrkv_modify_args_by_slug( $args, $slug ) {
// Example condition
if ( $slug === 'special-product' ) {
$args['custom_key'] = 'custom_value';
}
return $args;
}
Фільтр отримання статусу ТТН
add_filter( 'mrkv_invoice_statuses_args', 'mrkv_modify_invoice', 10 );
function mrkv_modify_invoice( $args, $slug ) {
// Example condition
if ( $slug === 'special-product' ) {
$args['custom_key'] = 'custom_value';
}
return $args;
}