Version Description
2016/10/21 =
Improve MercadoPago Modal z-index to avoid issues with any theme.
Download this release
Release Info
Developer | claudiosanches |
Plugin | WooCommerce MercadoPago |
Version | 2.0.7 |
Comparing to | |
See all releases |
Code changes from version 2.0.6 to 2.0.7
includes/class-wc-mercadopago-gateway.php
CHANGED
@@ -356,7 +356,7 @@ class WC_MercadoPago_Gateway extends WC_Payment_Gateway {
|
|
356 |
}
|
357 |
|
358 |
if ( is_page( $page_id ) ) {
|
359 |
-
echo '<style type="text/css">#MP-Checkout-dialog { z-index:
|
360 |
}
|
361 |
}
|
362 |
|
356 |
}
|
357 |
|
358 |
if ( is_page( $page_id ) ) {
|
359 |
+
echo '<style type="text/css">#MP-Checkout-dialog { z-index: 9999999999 !important; }</style>' . PHP_EOL;
|
360 |
}
|
361 |
}
|
362 |
|
languages/woocommerce-mercadopago.pot
CHANGED
@@ -2,10 +2,10 @@
|
|
2 |
# This file is distributed under the GPLv2 or later.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WooCommerce MercadoPago 2.0.
|
6 |
"Report-Msgid-Bugs-To: "
|
7 |
"http://wordpress.org/support/plugin/woocommerce-mercadopago/\n"
|
8 |
-
"POT-Creation-Date: 2016-
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
2 |
# This file is distributed under the GPLv2 or later.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WooCommerce MercadoPago 2.0.7\n"
|
6 |
"Report-Msgid-Bugs-To: "
|
7 |
"http://wordpress.org/support/plugin/woocommerce-mercadopago/\n"
|
8 |
+
"POT-Creation-Date: 2016-10-21 03:00:26+00:00\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: claudiosanches
|
|
3 |
Donate link: http://claudiosmweb.com/doacoes/
|
4 |
Tags: woocommerce, mercadopago, payment
|
5 |
Requires at least: 4.0
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 2.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -201,6 +201,10 @@ Entre em contato [clicando aqui](http://claudiosmweb.com/plugins/mercadopago-par
|
|
201 |
|
202 |
== Changelog ==
|
203 |
|
|
|
|
|
|
|
|
|
204 |
= 2.0.6 - 2016/07/29 =
|
205 |
|
206 |
* Fixed fatal error on IPN handler while log is disabled.
|
@@ -236,6 +240,6 @@ Entre em contato [clicando aqui](http://claudiosmweb.com/plugins/mercadopago-par
|
|
236 |
|
237 |
== Upgrade Notice ==
|
238 |
|
239 |
-
= 2.0.
|
240 |
|
241 |
-
*
|
3 |
Donate link: http://claudiosmweb.com/doacoes/
|
4 |
Tags: woocommerce, mercadopago, payment
|
5 |
Requires at least: 4.0
|
6 |
+
Tested up to: 4.6
|
7 |
+
Stable tag: 2.0.7
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
201 |
|
202 |
== Changelog ==
|
203 |
|
204 |
+
= 2.0.7 - 2016/10/21 =
|
205 |
+
|
206 |
+
* Improve MercadoPago Modal z-index to avoid issues with any theme.
|
207 |
+
|
208 |
= 2.0.6 - 2016/07/29 =
|
209 |
|
210 |
* Fixed fatal error on IPN handler while log is disabled.
|
240 |
|
241 |
== Upgrade Notice ==
|
242 |
|
243 |
+
= 2.0.7 =
|
244 |
|
245 |
+
* Improve MercadoPago Modal z-index to avoid issues with any theme.
|
woocommerce-mercadopago.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: MercadoPago gateway for Woocommerce.
|
6 |
* Author: Claudio Sanches
|
7 |
* Author URI: http://claudiosmweb.com/
|
8 |
-
* Version: 2.0.
|
9 |
* License: GPLv2 or later
|
10 |
* Text Domain: woocommerce-mercadopago
|
11 |
* Domain Path: /languages/
|
@@ -27,7 +27,7 @@ class WC_MercadoPago {
|
|
27 |
*
|
28 |
* @var string
|
29 |
*/
|
30 |
-
const VERSION = '2.0.
|
31 |
|
32 |
/**
|
33 |
* Instance of this class.
|
5 |
* Description: MercadoPago gateway for Woocommerce.
|
6 |
* Author: Claudio Sanches
|
7 |
* Author URI: http://claudiosmweb.com/
|
8 |
+
* Version: 2.0.7
|
9 |
* License: GPLv2 or later
|
10 |
* Text Domain: woocommerce-mercadopago
|
11 |
* Domain Path: /languages/
|
27 |
*
|
28 |
* @var string
|
29 |
*/
|
30 |
+
const VERSION = '2.0.7';
|
31 |
|
32 |
/**
|
33 |
* Instance of this class.
|