Posts

Showing posts from July, 2024

Plugin Name: WooCommerce QR Code Payment Gateway

Image
id = 'qr_code_payment'; $this->icon = ''; $this->has_fields = true; $this->method_title = 'QR Code Payment'; $this->method_description = 'Allows payments with QR Code, Google Pay, PhonePe, and Paytm'; $this->init_form_fields(); $this->init_settings(); $this->title = $this->get_option('title'); $this->description = $this->get_option('description'); add_action('woocommerce_update_options_payment_gateways_' . $this->id, array($this, 'process_admin_options')); add_action('woocommerce_thankyou_' . $this->id, array($this, 'thankyou_page')); add_action('wp_enqueue_scripts', array($this, 'payment_scripts')); add_action('woocommerce_email_before_order_table', array(...