0
votes

Méthode de paiement personnalisé Woocommerce

Je dois ajouter une méthode de paiement personnalisée à WooCommerce. Ce mode de paiement a bien documenté JSON API. Comment puis-je ajouter un mode de paiement personnalisé et l'accrocher à l'API?


0 commentaires

3 Réponses :


0
votes

Vous devez écrire un plugin qui a incorporé votre API de passerelle.

Voir plus d'informations sur la documentation WOOCOMERCE: API de Paiement Gateway

Vous pouvez voir plus d'informations sur le code / la classe / etc. sur le Woocomerce API DOC


0 commentaires

1
votes

Le filtre strong> wooCommerce_payment_gatways strong> vous permet d'ajouter des passerelles de paiement personnalisées à WOOCOMMERCE.

add_action( 'plugins_loaded', 'init_wc_custom_payment_gateway' );

function init_wc_custom_payment_gateway(){
    class WC_Custom_PG extends WC_Payment_Gateway {
        function __construct(){
            $this->id = 'wc_custom_pg';
            $this->method_title = 'Custom Payment Gateway';
            $this->title = 'Custom Payment Gateway';
            $this->has_fields = true;
            $this->method_description = 'Your description of the payment gateway';

            //load the settings
            $this->init_form_fields();
            $this->init_settings();
            $this->enabled = $this->get_option('enabled');
            $this->title = $this->get_option( 'title' );
            $this->description = $this->get_option('description');

            //process settings with parent method
            add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );

        }
        public function init_form_fields(){
            $this->form_fields = array(
                'enabled' => array(
                    'title'         => 'Enable/Disable',
                    'type'          => 'checkbox',
                    'label'         => 'Enable Custom Payment Gateway',
                    'default'       => 'yes'
                ),
                'title' => array(
                    'title'         => 'Method Title',
                    'type'          => 'text',
                    'description'   => 'This controls the payment method title',
                    'default'       => 'Custom Payment Gatway',
                    'desc_tip'      => true,
                ),
                'description' => array(
                    'title'         => 'Customer Message',
                    'type'          => 'textarea',
                    'css'           => 'width:500px;',
                    'default'       => 'Your Payment Gateway Description',
                    'description'   => 'The message which you want it to appear to the customer in the checkout page.',
                )
            );
        }

        function process_payment( $order_id ) {
            global $woocommerce;

            $order = new WC_Order( $order_id );

            /****

                Here is where you need to call your payment gateway API to process the payment
                You can use cURL or wp_remote_get()/wp_remote_post() to send data and receive response from your API.

            ****/

            //Based on the response from your payment gateway, you can set the the order status to processing or completed if successful:
            $order->update_status('processing','Additional data like transaction id or reference number');

            //once the order is updated clear the cart and reduce the stock
            $woocommerce->cart->empty_cart();
            $order->reduce_order_stock();

            //if the payment processing was successful, return an array with result as success and redirect to the order-received/thank you page.
            return array(
                'result' => 'success',
                'redirect' => $this->get_return_url( $order )
            );
        }

        //this function lets you add fields that can collect payment information in the checkout page like card details and pass it on to your payment gateway API through the process_payment function defined above.

        public function payment_fields(){
            ?>
            <fieldset>
                <p class="form-row form-row-wide">
                    <?php echo esc_attr($this->description); ?>
                </p>                        
                <div class="clear"></div>
            </fieldset>
            <?php
        }

    }
}


0 commentaires

0
votes

Merci à vous deux!

J'ai aussi ajouté ces lignes, sinon je ne pouvais pas l'activer: xxx

Il est possible de prendre des informations de la Checkout, comme éléments, nom, nom de famille, adresse, etc.


2 commentaires

Oui c'est possible ! Je pense que le paramètre $ achète_data contient toutes les informations nécessaires sur le produit achetées. Vous avez des objets d'autres que vous pouvez utiliser aussi: Businessbloomer.com/...


Pour l'instant, j'utilise $ commander-> get_data ()!