Open zhiru opened 11 months ago
mais um erro: class-wc-gerencianet-cartao.php
linha 167
<input id="gn_payment_total" name="gn_payment_total" type="hidden" value="<?php echo WC()->cart->total; ?>">
no repagametno da problema usar assim!
global $wp;
$cartWoo = WC()->cart;
$total = 0;
$total = $cartWoo->total;
if ( isset($wp->query_vars['order-pay']) && absint($wp->query_vars['order-pay']) > 0 ) {
$order_id = absint($wp->query_vars['order-pay']); // The order ID
$order = wc_get_order( $order_id ); // Get the WC_Order Object instance
$total = $order->get_Total();
}
<input id="gn_payment_total" name="gn_payment_total" type="hidden" value="<?php echo $total; ?>">
Essa função está errada a parte de calculo para quando vai fazer novamente o pagamento aparece só uma opção, com esses ajustes todas as opções aparecem.
Arquivo:
https://github.com/efipay/Plugin-Wordpress-Efi/blob/master/includes/class-gerencianet-oficial.php