WooCommerce Payment Gateway – OfficeGuy

OfficeGuy Israeli Payment Gateway for WooCommerce

Author:SUMIT (profile at wordpress.org)
WordPress version required:4.6
WordPress version tested:6.4.3
Plugin version:3.2.6
Added to WordPress repository:23-10-2017
Last updated:07-02-2024
Rating, %:100
Rated by:3
Plugin URI:https://help.sumit.co.il/he/articles/5830000
Total downloads:33 564
Active installs:1 000+
plugin download
Click to start download

Improve your WooCommerce site sales by accepting all credit cards
* Securely store customer payments methods for future purchases
* Issue and email invoices/receipts automatically following sales
* Process recurring charges using our Recurring Billing module
* Synchronize your inventory levels with our stock module
* Enable WooCommerce Subscriptions plugin for managing recurring bills
* Combine CartFlows & Cartflows Pro plugins for better sales promotions

Custom hooks

= Custom installments count =
function CustomInstallmentsLogic($MaximumPayments, $OrderValue) {
$Cart = WC()->cart;
return 5;
}
add_filter(‘sumit_maximum_installments’, ‘CustomInstallmentsLogic’);

Custom customer fields

function CustomCustomerFields($Customer, $Order) {
$Customer[‘Billing last name’] = $Order->get_billing_last_name();
return $Customer;
}
add_filter(‘sumit_customer_fields’, ‘CustomCustomerFields’);

Custom item fields

function CustomItemFields($Item, $Product, $UnitPrice, $OrderItem, $Order) {
// Add details to item name
$Item[‘Name’] = $Item[‘Name’] . ‘ – ‘ . $Product->get_sku();

// Remove zero priced items
if ($UnitPrice == 0)
    return null;

return $Item;

}
add_filter(‘sumit_item_fields’, ‘CustomItemFields’);


ChangeLog