Changeset 3368712
- Timestamp:
- 09/26/2025 10:08:24 PM (6 months ago)
- Location:
- openpay-stores/trunk
- Files:
-
- 3 edited
-
openpay_stores.php (modified) (1 diff)
-
openpay_stores_gateway.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
openpay-stores/trunk/openpay_stores.php
r3083625 r3368712 5 5 * Plugin URI: http://www.openpay.mx/docs/plugins/woocommerce.html 6 6 * Description: Provides a cash payment method with Openpay for WooCommerce. 7 * Version: 1.12. 27 * Version: 1.12.3 8 8 * Author: Openpay 9 9 * Author URI: http://www.openpay.mx -
openpay-stores/trunk/openpay_stores_gateway.php
r3083625 r3368712 45 45 public function __construct() { 46 46 $this->id = 'openpay_stores'; 47 $this->method_title = __(' Openpay Stores', 'openpay_stores');47 $this->method_title = __('Pago seguro con efectivo', 'openpay_stores'); 48 48 $this->has_fields = true; 49 49 … … 56 56 $this->iva = $this->country == 'CO' ? $this->settings['iva'] : 0; 57 57 58 $this->title = 'Pago en efectivo en tiendas de conveniencia'; 58 switch ($this->country){ 59 case 'MX': 60 $this->title = 'Pago seguro con efectivo'; 61 break; 62 case 'CO': 63 $this->title = 'Pago con efectivo'; 64 break; 65 case 'PE': 66 $this->title = 'Pago en agencias'; 67 break; 68 } 69 59 70 $this->description = ''; 60 71 $this->is_sandbox = strcmp($this->settings['sandbox'], 'yes') == 0; … … 70 81 71 82 $this->pdf_url_base = UtilsStores::getUrlPdfBase($this->is_sandbox, $this->country); 83 84 72 85 73 86 // tell WooCommerce to save options -
openpay-stores/trunk/readme.txt
r3083625 r3368712 5 5 Tested up to: 6.4.3 6 6 Requires PHP: 5.6 7 Stable tag: 1.12. 27 Stable tag: 1.12.3 8 8 License: GNU General Public License v3.0 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 17 17 18 18 == Changelog == 19 = 1.12.3 = 20 * Actualización de textos y logos 19 21 = 1.12.2 = 20 22 * Fix. Solución al error de referencia de pago pdf en email.
Note: See TracChangeset
for help on using the changeset viewer.