WP Manifestindependent plugin directory
manifest / ecommerce / chip-for-tour-master

CHIP for Tour Master

CHIP for Tour Master

by Chip In Sdn Bhd · github.com/chipasia/chip-for-tour-master · website

0stars
0forks

Install

No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:

wp plugin install https://github.com/chipasia/chip-for-tour-master/archive/refs/heads/main.zip

Readme

drawing

CHIP for Tour Master

This module adds CHIP payment method option to your Tour Master plugin.

Installation

  • Download plugin zip file.
  • Log in to your Wordpress admin panel and go: Plugins -> Add New
  • Select Upload Plugin, choose zip file you downloaded in step 1 and press Install Now
  • Activate plugin

Configuration

Set the Brand ID and Secret Key in the plugins settings.

For currency settings, set the value to MYR.

Setting payment method whitelist

To configure for payment method whitelist, you may utilize this filters:

  • tourmaster_chip_payment_send_params_tour
  • tourmaster_chip_payment_send_params_room

Example as follows:

  add_filter( 'tourmaster_chip_payment_send_params_tour', 'chip_payment_method_whitelist', 10, 2 );
  add_filter( 'tourmaster_chip_payment_send_params_room', 'chip_payment_method_whitelist', 10, 2 );

  function chip_payment_method_whitelist( $send_params, $tid ) {
    // available option: ['fpx', 'fpx_b2b1', 'duitnow_qr', 'visa', 'mastercard', 'razer_tng', 'razer_maybank_qr', 'razer_shopeepay', 'razer_grabpay']
    $send_params['payment_method_whitelist'] = ['fpx'];
    return $send_params;
  }

Screenshot

Set API Key

Other

Facebook: Merchants & DEV Community

Read the full README on GitHub →

Releases

TagPublished
1.1.0 Jul 29, 2025
1.0.1 Apr 30, 2025
1.0.0 Apr 6, 2025

These releases are tags only. The author does not attach a packaged zip, so there are no download counts to report.