This document details how to customize Kustom Checkout (KCO) to match your e-store's visual design and buying experience.
You can customize the colors of certain elements in the checkout to match your store's branding. These colors are set as options in the API when loading the checkout.
Available elements for customization:
options.color_buttonoptions.color_button_textoptions.color_checkboxoptions.color_checkbox_checkmarkoptions.color_headeroptions.color_linkoptions.radius_border
Example: Setting the button color to red:
$orderData['options']['color_button'] = "#ff0000";Note: Only hexadecimal values are allowed. The default color scheme is used if no customization values are set. Color settings also affect the settlement application.
You can add a short shipping message (up to 70 characters) to display on the order confirmation page under the "Delivery" headline. This is set when creating or updating an order:
{
//...
"options": {
"shipping_details": "Delivered within 1-3 days"
}
}Hide the VAT in the order summary by using the options.vat_removed property:
{
// more order data...
"options": {
"vat_removed": true
}
}Add custom checkboxes; more details are available here.