Update Cart Attributes
Shopify Storefront data and cart logic is bound to your Webflow elements through Shopyflow attributes. Connecting your Webflow site to Shopify is done by adding custom attributes to your Webflow elements.
Yet, you are not required to type or edit attributes manually. Shopyflow provides you with the pre-configured components needed to create your store, as copyable Webflow elements right in Webflow designer.
All the copyable Shopyflow Components are native editable Webflow elements. There is no layout or styling limitation on any element.
In the below image hover your mouse on the hotspots to see all the required Shopyflow attributes to build a product page like this in Webflow

Cart Attributes are custom key-value pairs that attach additional information to the shopping cart, persisting through checkout and appearing in order details. You can use them in common scenarios like gift options, delivery instructions or custom fulfillment workflows. Once set, these attributes are accessible in Shopify admin, order notifications, Shopify Flow automations, and third-party fulfillment apps.
<script>
/**
* @param {Object[]} attributes - An array of cart attribute objects with key-value pairs
*
*/
// Single cart attribute
const attributes = [{
key: 'gift-wrap',
value: 'true'
}];
window.Shopyflow.updateCartAttributes(attributes);
// Multiple cart attributes
const multipleAttributes = [
{
key: 'gift-wrap',
value: 'true'
},
{
key: 'gift-message',
value: 'Happy Birthday!'
},
{
key: 'delivery-date',
value: '2025-12-25'
}
];
window.Shopyflow.updateCartAttributes(multipleAttributes);
// Common use cases
// Gift options
window.Shopyflow.updateCartAttributes([
{ key: 'gift-wrap', value: 'yes' },
{ key: 'gift-message', value: 'Congratulations!' }
]);
// Delivery preferences
window.Shopyflow.updateCartAttributes([
{ key: 'delivery-instructions', value: 'Leave at front door' },
{ key: 'preferred-date', value: '2025-11-20' }
]);
// Business information
window.Shopyflow.updateCartAttributes([
{ key: 'po-number', value: 'PO-12345' },
{ key: 'company-name', value: 'Acme Corp' }
]);
</script>