How to customize the Shipped widget on Shopify?


Shipped
Last Updated: 3 days ago

If you would like to update the default settings for the Shipped widget, such as enabling Shipped Green, you need to add an additional script to your online store.

The reason for this is to maintain optimal speed for Shipped widget. Other companies add this setting in their merchant dashboard, but it greatly reduces the speed and therefore impacts conversion.

Use the following properties and instructions to update the Shipped widget default settings.


Properties

Properties

Description

Syntax (* represents the default setting)

Shipped Green

To enable or disable Shipped Green offer to your customers

Enable:
isGreen: true,

Disable*:
isGreen: false,

Shipped Shield

To enable or disable Shipped Shield offer to your customers

Enable*:
isShield: true,

Disable:
isShield: false,

For Merchant Paid (Advanced)

Only show information about Shipped Shield/Green; customers will not be able to add or remove Shipped Shield/Green from their orders.

If you have enabled Merchant Paid setting and only want to pay for Shipped Shield/Green when a customer has declined the offer, keep this set as disabled.

Enable:
isInformational: true,

Disable*:
isInformational: false,

Mandatory Opt-in (Advanced)

Customers are required to add Shipped Shield/Green; they will not be able to remove Shipped Shield/Green from their orders.

Enable:
isMandatory: true,

Disable*:
isMandatory: false,


Creating the Shipped configuration code

<script>
      shippedConfig = {
        "the appropriate properties from above"
        }
</script>

For example, if you have Shipped Green enabled, the code would be the following.

<script>
      shippedConfig = {
        isGreen: true,
        }
</script>

Inserting the Shipped configuration code

Shopify

  1. From the left menu navigation, go to Online Store > Themes.

  2. In the "Live theme" section, location "Actions" dropdown and select "Edit code".

  3. Select theme.liquid

  4. Right before </head>, add in the Shipped configuration code.

  5. Click "Save".


Shopify Plus

  1. Go to "Settings" from your Shopify Plus admin dashboard.

  2. Select "Checkout" and click on "Customize" on the desired checkout version.

  3. Click into the "Shipped Protection + Carbon Offset" app block.

  4. Change "Shipped Green" dropdown to "Yes."

  5. Click "Save" on the upper right corner.

We're here to help if you need any assistance, just send us a request at support@invisiblecommerce.com.


Was this article helpful?