Glyde Studio - Checkout

This will primarily control visibility of certain fields, or how certain functionality works during the Checkout page. This can be managed in the Admin Portal by Stores > Settings > Configuration > Glyde > Glyde Studio.

📘

NOTE

All fields are configurable on a Website scope only.


Checkout

Field NameNotes
Checkout Page JSONThis is where you will need to input the JSON Configurations as per the specified format.
🚧

NOTE

All JSON fields need to be in the correct format as per below.

{
"customer_phone_number_mandatory_checkout": true,
"display_delivery_instructions": true,
"open_product_accordion_order_summary": true,
"display_vendor_order_summary": true,
"open_product_accordion_shipping": true,
"display_vendor_shipping": true,
"display_source_vendor_shipping": true,
"display_subtotal_amount_cart": true,
"display_subtotal_amount_checkout": true,
"subtotal_amount_title": "Subtotal (Excl. Tax)",
"display_tax_amount_cart": true,
"display_tax_amount_checkout": true,
"tax_amount_title": "Tax",
"display_total_amount_checkout": true,
"display_total_amount_cart": true,
"total_amount_title": "Total",
"presave_address_validation_required": true,
"display_free_shipping_message": false,
"allow_guest_checkout": true
}

Use a JSON checker to confirm the payload is correct before saving, or it may have issues with the front end if one of the parameters are not as expected.

JSON Configurations

NameDescriptionTypeValue
customer_phone_number_mandatory_checkoutDictates if the customer’s phone number should be mandatory in the add/edit shipping or billing address form on the checkout page.Booleantrue or false
display_delivery_instructionsDictates if the Delivery Instructions field is shown on the checkout page.Booleantrue or false
open_product_accordion_order_summaryDictates if the Product Accordion on the Order Summary is opened by default.Booleantrue or false
display_vendor_order_summaryDictates if the Vendor information on the Order Summary is displayed.Booleantrue or false
open_product_accordion_shippingDictates if the Product Accordion on the Shipping step is opened by default.Booleantrue or false
display_vendor_shippingDictates if the Vendor information on the Shipping step is displayed.Booleantrue or false
display_source_vendor_shippingDictates if the Source Name is displayed during the Shipping step.Booleantrue or false
display_subtotal_amount_cartDictates if the Subtotal is displayed on the Shopping Cart fly out.Booleantrue or false
display_subtotal_amount_checkoutDictates if the Subtotal is displayed on the Checkout page.Booleantrue or false
subtotal_amount_titleDictates the label for the Subtotal field.TextExample text: "Subtotal (Excl. Tax)"
display_tax_amount_cartDictates if the Tax amount is displayed on the Shopping Cart fly out.Booleantrue or false
display_tax_amount_checkoutDictates if the Tax is displayed on the Checkout page.Booleantrue or false
tax_amount_titleDictates the label for the Tax field.TextExample text: "Tax" or "GST"
display_total_amount_cartDictates if the Grand Total is displayed on the Shopping Cart fly out.Booleantrue or false
display_total_amount_checkoutDictates if the Grand Total is displayed on the Checkout page.Booleantrue or false
total_amount_titleDictates the label for the Grand Total field.TextExample text: "Total (incl. Tax)"
presave_address_validation_requiredDictates if validation for a saved address is required.Booleantrue or false
display_free_shipping_messageDictates if the Free Shipping message will appear during the Shipping step.Booleantrue or false
allow_guest_checkoutDictates if customers need to be registered prior to purchasing on the Marketplace.Booleantrue or false

If any changes were made, you can then select Save Config from the top right.