Skip to content

Search is only available in production builds. Try building and previewing the site to test it out locally.

SellerAssistedBuyingSettings container

The SellerAssistedBuyingSettings container lets customers manage their remote shopping assistance preference. It shows a checkbox that enables or disables an administrator’s ability to access and manage the customer’s shopping session. It also renders an optional tooltip, a dismissible warning when assistance is turned off, and a message when the feature is not available at the store level.

This container is part of the seller-assisted buying feature. For the end-to-end flow and Admin setup, see Seller-assisted buying.

Remote shopping assistance consent checkbox

Remote shopping assistance consent checkbox
ParameterTypeReq?Description
classNamestringNoCustom CSS class applied to the root container element. Merged with the default class. Use to apply brand styles or integrate with a utility CSS framework.

This container does not expose any customizable slots.

The boilerplate already includes the commerce-seller-assisted-buying-settings block, which renders this container with no additional configuration. No changes are required to place the preference control on a page.

To apply a custom CSS class to the container root, pass className to the render call in the block file:

await accountRenderer.render(SellerAssistedBuyingSettings, {
className: 'my-settings-wrapper',
})(container);