We are here 24/7, keeping an eye on things and making sure everything runs smoothly.
Take full advantage of OpenPath with our Integrations to eCommerce engines, payment gateways and processors and 3rd party payment software vendors.
You can easily connect your MSD account to your Shopify CRM account. For Shopify integrations, please contact us directly, as the integration process is handled internally to ensure a seamless and accurate setup.
This plugin allows you to use MSD payment portal for your PrestaShop.
1. Navigate to the Modules menu and click on the Module Manager button. You would be redirected to the Modules management screen.
2. Click on the Upload a Module button to proceed with the installation. A new pop-up would appear. You may either drop the module’s .zip file in that pop-up or use the select file link to browse for that module.
A new pop-up will appear with the message Module Installed! That’s it—your module is now successfully installed. You can click the Configure button to customize the options for the newly installed module.
In the configure screen you can set the following values:
This plugin allows you to use the MSD payment portal for your Opencart, as an additional payment option.
There are two ways to install the plugin.
2. Login into the OpenCart admin module then go to the Extension → Installer option → select the plug-in zip and upload it then go to the Extensions option and select a payment option from the extension type we will find MSD and then install by clicking the install button.
After successful installation of the plugin, you have to enable and manage to set the MSD payment gateway from
Extensions → Extensions → Payment Methods → msd Payment Gateway → Click on Edit.
In the manage screen, you can set the following values
This plugin allows you to use the MSD payment portal for your WooCommerce site, as an additional payment option.
There are two ways to install the plugin.
2. From WordPress admin go to Plugins – Add New. Click on Upload Plugin, and browse the zip version of the MSD plugin folder.
After successfully installing the plugin, activate the msd plugin by navigating to Plugins → Installed Plugins.
Once the msd plugin is activated, you can manage the plugin settings from Woo-commerce → Settings → Payments → msd.
In the manage screen, you can set the following values:
Keep the Enable test mode checked, if you want to run the Plugin in a test environment.
This plugin allows you to use the MSD payment portal for your Magento, as an additional payment option.
Create a folder name code under the Magento root directory/app. Place the unzipped module folder under this newly created code folder. Now run the following command from the Magento root directory :
After successful installation of the plugin, you have to enable and manage to set the MSD payment gateway from Stores → Configuration → Sales → Payment Methods → msd Payment Gateway
In the manage screen, you can set the following values:
This plugin allows you to use the MSD payment portal for your X-Cart, as an additional payment option.
1. Open the X-Cart admin panel and log in with the correct credential.
2. Please Click on Apps and then click on My Apps from the left side menu.
3. Then click on Upload Addon from the top right corner and then upload the MSD module zip.
4. After successful upload click on Store Setup and then Payment Method from the left side menu.
5. Put credentials and setup with your settings.
In the manage screen, you can set the following values:
This plugin allows you to use the MSD payment portal for your osCommerce, as an additional payment option.
$customer_notification = (SEND_EMAILS == 'true') ? '1' : '0'; Add Bellow Code above this "$customer_notification = (SEND_EMAILS == 'true') ? '1' : '0';" line: $order_comment = $order->info['comments']; if ($msd_transaction_id) { $order_comment .= " Transaction Id: $msd_transaction_id"; }
Second step:
'comments' => $order->info['comments'] Replace With 'comments' => $order_comment
Third step:
while (list($key, $value) = each($HTTP_POST_VARS['configuration'])) { Add The code bellow the line: if (is_array($value)) $value = implode(',', $value);
Fourth step:
function tep_cfg_pull_down_msd_cctypes($cctypes, $key = '') { $name = 'configuration[' . $key . '][]'; $cctypes_array = array( array( 'id' => 'AE', 'text' => MODULE_PAYMENT_msd_TEXT_AMERICAN_EXPRESS ), array( 'id' => 'VI', 'text' => MODULE_PAYMENT_msd_TEXT_VISA ), array( 'id' => 'MC', 'text' => MODULE_PAYMENT_msd_TEXT_MASTERCARD ), array( 'id' => 'DI', 'text' => MODULE_PAYMENT_msd_TEXT_DISCOVER ), array( 'id' => 'JCB', 'text' => MODULE_PAYMENT_msd_TEXT_JCB ), array( 'id' => 'OT', 'text' => MODULE_PAYMENT_msd_TEXT_OTHER ) ); return tep_draw_multi_select_menu($name, $cctypes_array, $cctypes); }
Fifth step:
function tep_draw_multi_select_menu($name, $values, $default = array(), $parameters = '', $required = false) { global $HTTP_GET_VARS, $HTTP_POST_VARS; $field = <select multiple name="' . tep_output_string($name) . '"'; if (tep_not_null($parameters)) $field .= ' ' . $parameters; $field .= > if (empty($default) && (isset($HTTP_GET_VARS[$name]) || isset($HTTP_POST_VARS[$name]))) { if (isset($HTTP_GET_VARS[$name])) { $default = $HTTP_GET_VARS[$name]; } elseif (isset($HTTP_POST_VARS[$name])) { $default = $HTTP_POST_VARS[$name]; } } if (!is_array($default)) $default = explode(',', $default); for ($i=0, $n=sizeof($values); $i<$n; $i++) { $field .= <option value="' . tep_output_string($values[$i]['id']) . '"'; if (in_array($values[$i]['id'], $default)) { $field .= ' selected="selected"'; } $field .= > . tep_output_string($values[$i]['text'], array('"' => '"', ''' => ''', '<' => '<', '>' => '>')) . <option>; } $field .= <select>; if ($required == true) $field .= TEXT_FIELD_REQUIRED; return $field;
In the manage screen, you can set the following values:
This plugin allows you to use the MSD payment portal for your Zen Cart, as an additional payment option.
function zen_cfg_pull_down_msd_cctypes($cctypes, $key = '') { $name = 'configuration[' . $key . '][]'; $cctypes_array = array( array( 'id' => 'AE', 'text' => MODULE_PAYMENT_msd_TEXT_AMERICAN_EXPRESS ), array( 'id' => 'VI', 'text' => MODULE_PAYMENT_msd_TEXT_VISA ), array( 'id' => 'MC', 'text' => MODULE_PAYMENT_msd_TEXT_MASTERCARD ), array( 'id' => 'DI', 'text' => MODULE_PAYMENT_msd_TEXT_DISCOVER ), array( 'id' => 'JCB', 'text' => MODULE_PAYMENT_msd_TEXT_JCB ), array( 'id' => 'OT', 'text' => MODULE_PAYMENT_msd_TEXT_OTHER ) ); return zen_draw_multi_select_menu($name, $cctypes_array, $cctypes); }
Second step:
function zen_draw_multi_select_menu($name, $values, $default = array(), $parameters = '', $required = false) { $field = '<select multiple rel="dropdown" name="'.zen_output_string($name).'"'; if (zen_not_null($parameters)) { $field .= ' ' . $parameters; } $field .= '>' . " "; if (empty($default) && isset($GLOBALS[$name])) { $default = $GLOBALS[$name]; } if (!is_array($default)) $default = explode(',', $default); foreach($default as $dval) { $default[] = trim($dval); } foreach ($values as $value) { $field .= '<option value="' . zen_output_string($value['id']) . '"'; if (in_array($value['id'], $default)) { $field .= ' selected="selected"'; } $field .= '>' . zen_output_string($value['text'], array('"' => '"', ''' => ''', '<' => '<', '>' => '>')) . 'option>' . " "; } $field .= 'select>' . " "; if ($required == true) { $field .= TEXT_FIELD_REQUIRED; } return $field; }
3. In the admin side of your website go to Modules – Payment and install the new MSD payment. Edit the payment put in credentials and set up your settings.
In the manage screen, you can set the following values:
You can easily connect your MSD account to your Konnektive CRM account. However, to ensure this process is completed correctly, Konnektive strongly recommends all clients to reach out to their assigned account manager, before activating and testing the gateway.
For detailed instructions and additional support, please refer to the dedicated Konnektive help page.
To prevent cross-corping, categorize your gateways by the corp they were acquired by.
Additional inputs may vary depending on the gateway. At least one field will relate to the credentials provided by your merchant provider. For specific gateway requirements, refer to the Gateways section in Konnektive.
The instructions above were taken from the dedicated Konnektive help page. If you encounter any issues or need further assistance:
You can easily connect your MSD account to your Sticky CRM account. For Sticky integrations, please contact us directly, as the integration process is handled internally to ensure a seamless and accurate setup.