Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

corrige o nome do formulário do parcelamento! #28

Merged
merged 2 commits into from
Oct 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions woocommerce-imobanco/includes/creditcard.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function init_form_fields() {
'title' => __( 'Title', $this->domain ),
'type' => 'text',
'description' => __( 'This controls the title which the user sees during checkout.', $this->domain ),
'default' => __( 'Custom Payment', $this->domain ),
'default' => __( 'Cartão de Crédito', $this->domain ),
'desc_tip' => true,
),
'order_status' => array(
Expand All @@ -75,7 +75,7 @@ public function init_form_fields() {
'title' => __( 'Description', $this->domain ),
'type' => 'textarea',
'description' => __( 'Payment method description that the customer will see on your checkout.', $this->domain ),
'default' => __('Payment Information', $this->domain),
'default' => __('Informação do método de pagamento', $this->domain),
'desc_tip' => true,
),
'instructions' => array(
Expand Down
2 changes: 1 addition & 1 deletion woocommerce-imobanco/includes/forms/creditcard_form.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<div class="form-row form-row-wide">
<label for="installments">Parcelas</label>

<select name="installment input-text">
<select name="installment">
<?php foreach($installments as $key => $fee): ?>

<option value="<?= $key + 1 ?>">
Expand Down
4 changes: 2 additions & 2 deletions woocommerce-imobanco/woocommerce-imobanco.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
/*
Plugin Name: WooCommerce Imopay gateway
Plugin URI: https://www.imobanco.com.br/
Description: Plugin para utilizar o gateway de pagamento do Imopay. V1.0
Version: 0.0.2
Description: Plugin para utilizar o gateway de pagamento do Imopay
Version: 0.0.3
Author: Imobanco
Author URI: https://www.imobanco.com.br/
License: GPLv2 or later
Expand Down