Description
Sezzle is a payment gateway for letting your customers buy now and pay later.
Restrict Sezzle based on user roles
Make sure Sezzle Gateway plugin is active
in WordPress admin.
Hide Sezzle Payment Gateway
If you want to hide Sezzle’s payment gateway based on user roles
-
Add the following function to your code:
function restrict_sezzle_pay($available_gateways) {
if (is_admin()) {
return $available_gateways;
}
unset($available_gateways[‘sezzlepay’]);
return $available_gateways;
} -
Call the following filter
inside
the user’s access deciding code:add_filter(‘woocommerce_available_payment_gateways’, ‘restrict_sezzle_pay’);
Hide Sezzle Product Widget
If you want to hide Sezzle’s product widget based on user’s roles
-
Call the following action
inside
the user’s access deciding code:remove_action(‘woocommerce_single_product_summary’, ‘add_sezzle_product_banner’);
Example code with woocommerce-memberships
plugin:
If you are using woocommerce-memberships
to deal with user roles and restrictions, you can use the following code to hide Sezzle gateway and product widget based on user’s role like so:
$user_id = 1;
$plan_id = 42;
$plan = get_post($plan_id);
// If user does not belong to the plan
if(!wc_memberships_is_user_member($user_id, $plan)) {
// hide the gateway
add_filter('woocommerce_available_payment_gateways', 'restrict_sezzle_pay'); // make sure restrict_sezzle_pay function is available
// hide the product widget
remove_action('woocommerce_single_product_summary', 'add_sezzle_widget_in_product_page');
}
Notes
- Read about
woocommerce_available_payment_gateways
hook here.
For more information, please visit Sezzle Docs.
Installation
- Signup for Sezzle at
https://dashboard.sezzle.com/merchant/signup/
. Login to your dashboard and keep your API Keys page open. You will need it in step6
. - Make sure you have WooCommerce plugin installed.
- Install the Sezzle Payment plugin and activate.
- Go to admin > WooCommerce > Settings > Payments > Sezzle.
- Fill the form according to the instructions given in the form and save it.
Your store is ready to use Sezzle as a payment gateway.
Reviews
There are no reviews for this plugin.
Contributors & Developers
“Sezzle Woocommerce Payment” is open source software. The following people have contributed to this plugin.
ContributorsTranslate “Sezzle Woocommerce Payment” into your language.
Interested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
Changelog
3.1.4
- FIX: Sqaure and Stripe Payment Method Form blocking.
- FEATURE: Ability to turn on/off installment widget plan from Sezzle settings.
3.1.3
- FIX: Multiple Installment Widget.
3.1.2
- FEATURE: Installment Plan Widget under Sezzle Payment Option in Checkout Page.
- FIX: Admin check added in gateway hiding function.
3.1.1
- FIX: Failing of sudden orders being already captured.
- FEATURE: Ability to turn on/off logging.
3.1.0
- MODIFY: Transaction Mode added instead of Sezzle API URL.
3.0.5
- FIX: Undefined index:Authorization during redirection to Sezzle.
3.0.4
- MODIFY: Updated User Guide.
3.0.3
- MODIFY: Updated Widget Script URL.
3.0.2
- FIX: Order key property access through function instead of direct access.
3.0.1
- FIX: Return URL from Sezzle Checkout changed to Checkout URL of merchant website.
- FEATURE: Added logs for checking API functions.
- FIX: Check payment capture status before capturing the payment so that already captured orders does not fall into the process.
3.0.0
- FIX: Downgraded to previous stable version due to some conflicts arising in few versions.
- MODIFY: Delayed capture has been removed.
- MODIFY: Widget in Cart has been removed.
2.0.9
- FIX: Added check to include settings class when not available.
2.0.8
- MODIFY: WordPress support version has been changed to 4.4.0 or higher.
2.0.7
- FEATURE: Hiding of Sezzle Pay based on cart total.
- FEATURE: Sezzle Widget and Sezzle Payment merged into one plugin.
- FIX : Amount converted to cents while refund.
2.0.6
- FIX: Page hanging issue during order status change for other payment methods.
2.0.5
- FIX: Security fix and quality improvements.
2.0.4
- FEATURE: Delayed Capture.
- FEATURE: Sezzle Widget for Cart Page.
- FEATURE: New settings for managing Sezzle Widget.