Add a Custom Logo to Your Multi-Shipping Checkout
Giftship automatically retrieves your theme’s default logo file for use on the multi-shipping checkout page.
If your theme doesn’t include a standard logo setting, you can manually define one in your settings_schema.json file.
1. Add a new logo field
Open your theme’s /config/settings_schema.json file and add the following code:
{
"name": "Multi-shipping Checkout",
"settings": [
{
"type": "image_picker",
"id": "multi_checkout_logo",
"label": "Logo Image"
}
]
}
This creates a custom logo picker in your theme settings.
2. Reference the logo in your theme settings
Next, open /config/settings_data.json and add a reference to your logo image:
{
"current": {
"multi_checkout_logo": "shopify://shop_images/logo.png"
}
}
Replace logo.png with your actual file name or path.
3. Confirm the logo displays
Once the setting is added, Giftship will automatically detect and display this image on your multi-shipping checkout page.
If the logo doesn’t appear, verify that the image path is correct and that your theme has been published or saved with the new settings.