- Product Types
- Adding Products
- One Time Pricing
- Subscription Pricing
- Subscription Trials Setup
- Installment Pricing
- Donation / Pay What You Want
- Inventory Management
- Product Variants
- Variant Images
- Digital Downloads
- Change Product Availability
- Hide Product from Shop Page
- Template Customization
- Product Collections
- First-Time Payment Discounts
- Manage Product Access
- Payment Types
- Free Trials & Setup Fees
- Create Product With Free Trials
- Charge Set Up Fee on Trials
- Product List
- Product Pages
- Create Product Page in Elementor
- Custom Buy Links
- Product SEO
- Change Permalinks
- Custom Fields
- Adding Products
- Test Mode
- Make Test Payments
- Edit & Customize Form
- Change Form Template
- Delete SureCart Forms
- Custom Checkout Form
- Add New Checkout Form
- Checkout Form With Gutenberg
- Checkout Form in Elementor
- Custom Thank You Page
- Create Donation Form
- Customize Confirmation Popup
- Include Coupons in URLs
- Pre-Fill Checkout Fields
- Change Checkout Texts
- Password Field in Checkout
- Default Country Code
- Add Terms to Checkout
- Conditional Block Checkouts
- Remove Coupon Field
- Hide Quantity Option
- Disable Quantity Editing
- Disable Item Removal
- Country Specific Purchases
- Fix View Order Button
- Fix Express Payment Buttons
- Fix PayPal Test Connection
- Fix PayPal Test Connection
- Fix Sign-In Loop
- Fix Order Confirmation Redirect
- Fix Divi Bullet Point Issue
- Fix Customer Dashboard
- Fix JSON Response Error
- Failed Payment Behavior
- Fix Stripe Zip Code Error
- Fix "Product Can’t Be Blank"
- Troubleshooting Guide
- PayPal IPN Warning Emails
- Caching Configuration for SureCart
- Why iDEAL Might Not Appear in Your CheckoutÂ
Selling WordPress Plugins and Themes With SureCart
With our SureCart Business and Pro plans, you can purchase an add-on for our software licensing platform to sell premium themes and plugins with SureCart.
What’s great about using SureCart is you offload any update checks, downloads, and any other resource-intensive tasks off your website – we handle this for you.
We’ve built a WordPress SDK to make it easy to get started.
Installing WordPress SDK
Clone the above repository in your project.
cd /path/to/your/project/folder
git clone https://github.com/surecart/wordpress-sdk.git licensing
Now include these dependencies in your plugin/theme.
if ( ! class_exists( 'SureCart\Licensing\Client' ) ) {
require_once __DIR__ . '/licensing/src/Client.php';
}
Include a release.json File
Add a release.json
file to the root of your plugin or theme project.release.json
requires the following:
Property | Description |
---|---|
name | Your plugin or theme display name. |
slug | Your plugin or theme slug. IMPORTANT This must match the folder name of your project. |
author | HTML to be used for the author of the plugin. |
author_profile | A url to your author profile. |
version | The version of your plugin or theme. |
requires | The required WordPress version. |
tested | The version of WordPress the plugin has been tested with. |
requires_php | An array of sections to tab through in the updated UI. |
sections | A URL to your author profile. |
Sections will require a changelog
property with an HTML string of your changelog.
Example release.json File
{
"name": "SureCart Example Plugin",
"slug": "surecart-plugin-example",
"author": "<a href='https://surecart.com'>SureCart</a>",
"author_profile": "https://surecart.com",
"version": "0.9.0",
"requires": "5.6",
"tested": "6.1.0",
"requires_php": "5.3",
"sections": {
"description": "This is my plugin description.",
"changelog": "<h4>1.0 – July 20, 2022</h4><ul><li>Bug fixes.</li><li>Initital release.</li></ul>",
"frequently asked questions": "<h4>Question<h4><p>Answer</p>"
}
}
Usage Example
Please refer to the Installation section before you start using this class.
if ( ! class_exists( 'SureCart\Licensing\Client' ) ) {
require_once __DIR__ . '/licensing/src/Client.php';
}
// initialize client with your plugin name.
$client = new \SureCart\Licensing\Client( 'Your Plugin', __FILE__ );
// set your textdomain.
$client->set_textdomain( 'your-textdomain' );
// add the pre-built license settings page.
$client->settings()->add_page(
[
'type' => 'submenu', // Can be: menu, options, submenu.
'parent_slug' => 'your-plugin-menu-slug', // add your plugin menu slug.
'page_title' => 'Manage License',
'menu_title' => 'Manage License',
'capability' => 'manage_options',
'menu_slug' => $this->client->slug . '-manage-license',
'icon_url' => '',
'position' => null,
'parent_slug' => '',
'activated_redirect' => admin_url( 'admin.php?page=my-plugin-page' ), // should you want to redirect on activation of license.
'deactivated_redirect' => admin_url( 'admin.php?page=my-plugin-deactivation-page' ), // should you want to redirect on detactivation of license.
]
);
Make sure you call this function directly, never use any action hook to call this function.
For plugins example code that needs to be used on your main plugin file.
For themes example code that needs to be used on your themesfunctions.php
file.
More Usage
$client = new \SureCart\Licensing\Client( 'Twenty Twelve', __FILE__ );
Setting textdomain
You may set your own textdomain to translate text.
$client->set_textdomain( 'your-project-textdomain' );
We hope this article helps you. If you have any questions, please don’t hesitate to reach out to our support team. We’re here to help!
We don't respond to the article feedback, we use it to improve our support content.