Plugin Directory

Changeset 2792881


Ignore:
Timestamp:
10/01/2022 04:31:31 PM (3 years ago)
Author:
felipe152
Message:
  • 1.9.8
  • Adicionada quebra de linha para o método de pagamento
Location:
powers-triggers-of-woo-to-chat/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • powers-triggers-of-woo-to-chat/trunk/class-wwp-woocommerce-front.php

    r2652371 r2792881  
    167167        //payment
    168168        $payment_data = $this->get_payment_data($order);
    169         $rData['payment_url'] = $payment_data['payment_url'];
     169        $rData['payment_url'] = "\n".$payment_data['payment_url']."\n";
    170170
    171171
     
    316316            'payment_url' => isset( $pagarme['boleto_url'] ) ? $pagarme['boleto_url'] : $defaults['payment_url']
    317317          );
     318        } elseif ( 'wc_pagarme_pix_payment_geteway' === $order->get_payment_method() ) { //Pix Automático com Pagarme para WooCommerce
     319          $pix = get_post_meta( $order->get_id(), '_wc_pagarme_pix_payment_qr_code', true );
     320          $args = array(
     321            'payment_url' => empty( $pix ) ? $defaults['payment_url'] : $pix
     322          );
    318323        } elseif ( 'woo-moip-official' === $order->get_payment_method() && 'payBoleto' === $order->get_meta( '_moip_payment_type' ) ) {
    319324          $moip = get_post_meta( $order->get_id(), '_moip_payment_links', true );
  • powers-triggers-of-woo-to-chat/trunk/readme.txt

    r2668557 r2792881  
    22Contributors: felipe152
    33Tags: woocommerce and whatsapp , woocommerce , whastsapp , woocommerce integration with whatsapp ,woocommerce Order to whatsapp, Contact Form 7
    4 Requires at least: 4.0.1
    5 Tested up to: 5.9
     4Requires at least: 5.1
     5Tested up to: 6.0.1
    66Stable tag: 2.0.0
    77License: GPLv2 or later
     
    5656
    5757== Changelog ==
     58* 1.9.8
     59* Adicionada quebra de linha para o metodo de pagamento
    5860* 1.9.7
    5961* Correção de bug de JS
  • powers-triggers-of-woo-to-chat/trunk/wc-whatsapp-powers.php

    r2668557 r2792881  
    44 * Plugin URI:  https://wordpress.org/plugins/powers-triggers-of-woo-to-chat/
    55 * Description: Automatiza envio de mensagens Whatsapp.
    6  * Version:     1.9.7
     6 * Version:     1.9.8
    77 * Author:      Felipe Peixoto
    88 * Author URI:  http://felipepeixoto.tecnologia.ws/projetos/plugins-para-wordpress/notificacoes-de-pedidos-por-whatsapp/
     
    129129       
    130130       
    131         if (wwp_is_plugin_active('woo-save-abandoned-carts/cartbounty-abandoned-carts.php')){
     131        if (wwp_is_plugin_active('woo-save-abandoned-carts/cartbounty-abandoned-carts.php')
     132            or
     133            wwp_is_plugin_active('woo-save-abandoned-carts-pro/cartbounty-pro-abandoned-carts.php')){
     134           
     135
    132136            global $wwp_db_path;
    133137            require_once($wwp_db_path.'class-wwp-cartbounty-front.php');
Note: See TracChangeset for help on using the changeset viewer.