Thank you for response, i have all the payments disabled in the plugin settings, in the checkout is working ok, but in the Wepos plugin is charging the money with all the payment methods. you know how can disable this ?
i tryed this lines
$offline_payment_methods = apply_filters( 'dokan_offline_payment_methods', [ 'cod', 'woo-mercado-pago-basic' ] );
$exclude_cod_payment = 'on' === dokan_get_option( 'exclude_cod_payment', 'dokan_withdraw', 'off' );
if ( $exclude_cod_payment && in_array( $order->get_payment_meAthod(), $offline_payment_methods ) ) {
return;
}
adding the payment method of wepos, but when i try this, the pos dont process the next sales.
Thank you for the help