Release notes
Your bookmark friendly source for BigCommerce platform updates and enhancements.
Latest updates
API Updates for July 22, 2021
Payments
Added Mollie to the list of supported gateways for stored cards.
API
The Product Sort Order API is now generally available.
API and Theme Updates for July 15, 2021
Theme
Added support for Localizing Variation Descriptions enabling you to customize the display language of your theme.
API
The Widgets API now supports Localizing Widget Template Settings.
GraphQL API Reference documentation now includes a complete set of GraphQL types, queries, mutations, and parameters.
Developer Blog
Cornerstone 5.7.1 for July 13, 2021
Theme
Update language files for some locales. #2086
BigCommerce for WordPress 4.14.0 for July 7, 2021
4.14.0
View release 4.14.0 on GitHub
Fixed
Fixed
Product Form
>Option Description
escaping logic so<strong>
tags render properly.Fixed login
redirect_to
query argument not being respected. This happened for admin users in the case when confirm admin email action was in progress. Other user roles were not affected.Fixed Admin/Users reset password link.
Fixed cart footer template description and bumped the template version (related github issue: #275)
Fixed JavaScript error that occured when the pricing API errors out (related github issues: #226 #231)
Theme Updates for July 1, 2021
Theme
Added ability to embed a GraphQL query in the front matter of a Stencil theme. See GraphQL attributes for examples and a complete list of available variables.
Localization
- Added ability to localize the control panel, system messages, and other options outside your theme by using one of the following methods:
Control Panel: Access the default language setting found in the control panel’s Store Profile.
API: Use the newly added Store Locale settings endpoints.
- GET /settings/store/locale
- PUT /settings/store/locale
- Added the automated display of translated country and state name on the storefront based on the default storefront language defined in the control panel.
Developer Blog
Rendered Widget HTML now available in GraphQL Storefront API
You may now fetch the rendered HTML of widgets created via Widgets API or Page Builder.
To get the content, you’ll need to provide a page type, and the ID for the page (if necessary). In the response, you’ll get a list of all the regions on that page, and the HTML of the widgets within those regions. This response can be used to inject Widget content into a headless storefront, or in any other situation where you need to flexibly access the content.
Here’s an example query:
# Get the widget HTML for the home page
query getHomePageContentWidgets {
site {
content {
renderedRegionsByPageType(pageType: HOME) {
regions {
name
html
}
}
}
}
}
Cornerstone 5.6.0 for June 17, 2021
Theme
Translation mechanism for config.json values have been implemented. #2076
Enter press on Compare checkbox cause quick view opening. #2074
Product images in quick view can be squashed. #2075
Fixed shift in change options popup on Cart page. #2071
Fixed possibility to select 'None' on multi unrequired Swatch Options. #2068
Translation Gap: Account -> Wish List -> Name required message. #2060
Translation Gap: Cart -> Shipping estimator error messages. #2066
Add to cart button and Wishlist should be on one line on desktop. #2050
Logo on AMP Product details page (PDP) doesn't fit header. #2054
Translation Gap: Compare page fields (Description, Rating, and Availability). #2059
Translation Gap: Compare products error message. #2061
Translation Gap: Gift Certificate -> Code required message. #2064
Added translation for invalid quantity value error on Cart. #2062
Translation Gap: Delete from Cart confirmation popup. #2065
Fixed NaN error on increase/decrease product quantity by adding field validation. #2052
Fixed social share links on blog post. #2077
BigCommerce for WordPress 4.13.0 for June 17, 2021
4.13.0
View release 4.13.0 on GitHub
Added
Added support for password reset for users that exist only on BC (not yet synced with WP).
Delete all channels from the WP database on plugin uninstall so a fresh channel list is pulled when reinstalling and connecting to a new store.
Added support for changing the SKU element when selecting variants. This adds a wrapper
around the SKU value where JS targets the wrapper and updates the text.NOTE: Update your
product-sku.php
template accordingly.
Changed
Within Embedded Checkout, logging out using the EC sign out button now triggers
a callback to log the user out of wordpress as well viawp_logout()
.The SKU text now updates after changing options on a product.
NOTE:
product-sku.php
template updated to v.1.1.0.
Fixed
Fixed background colors in 2021 theme.
Fixed banner overlaps the mobile menu icon on 2021 theme.
Fixed top/bottom banners set for WordPress Twenty-Seventeen theme not showing up on home page.
Blueprint Theme Update for June 17, 2021
Blueprint Themes
Removed Internet Explorer 11 or later from the list of Supported Browsers for the BigCommerce control panel.
Developer Blog