ProductStoreFrontLocales
Overrides for the product in a channel locale.
Table Specific Information
Select
The connector uses the BigCommerce API to process WHERE clause conditions built with the following columns and operators:
- ChannelId supports the = comparison. Required filter.
- LocaleId supports the = comparison. Required filter.
The rest of the filter is executed client-side within the connector.
For example, the following queries are processed server-side:
SELECT * FROM ProductStoreFrontLocales;
SELECT * FROM ProductStoreFrontLocales WHERE ChannelId = '1' AND LocaleId = 'en';
Update
You can set locale-specific storefront details for a product. You must specify ProductId, ChannelId and LocaleId in the WHERE clause. For example:
UPDATE ProductStoreFrontLocales SET StorefrontDetailsWarranty = 'Garantie 2 ans', StorefrontDetailsAvailabilityDescription = 'Disponible maintenant', StorefrontDetailsSearchKeywords = 'mots cles' WHERE ProductId = '111' AND ChannelId = '1' AND LocaleId = 'fr';
Columns
| Name | Type | ReadOnly | Description |
| ProductId [KEY] | String | False |
The unique identifiers of the products. |
| ChannelId [KEY] | String | False |
Storefront channel. |
| LocaleId [KEY] | String | False |
Locale in the channel. |
| StorefrontDetailsWarranty | String | False |
Product warranty. |
| StorefrontDetailsAvailabilityDescription | String | False |
Description about product availability. |
| StorefrontDetailsSearchKeywords | String | False |
Product search keywords. |