Skip to content

Commit a733382

Browse files
committed
packaged version 3.9.0
1 parent 7df52c0 commit a733382

46 files changed

Lines changed: 1673 additions & 1155 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Changelog
22

3+
## [3.9.0]
4+
5+
### Added
6+
7+
- Added the retail price to the product price template. The retail price will only display
8+
when it is set on the product in the BigCommerce admin.
9+
- Added support for product videos in the product gallery section. The videos will always be YouTube
10+
videos. We've implemented the YouTube Player API to assist with play and pause features when
11+
switching between multiple videos.
12+
- There is a known issue with this YT Player API on IE 11 and videos are currently not playing
13+
in that browser. This will be addressed in the next release.
14+
15+
### Changed
16+
17+
- `DELETE` requests to the WP REST API are now camouflaged as `POST` requests to work around
18+
web hosts that do not allow standard HTTP methods.
19+
20+
### Fixed
21+
22+
- Fixed the missing "Cart" section in the theme customizer when visiting the customizer before
23+
first saving any settings in the plugin admin.
24+
325
## [3.8.1]
426

527
### Changed
@@ -72,7 +94,7 @@
7294
from this plugin, add the following snipped to a theme or plugin:
7395
```
7496
add_action( 'plugins_loaded', function() {
75-
remove_action( 'wp_head', bigcommerce()->post_types->product_page_meta_description, 0 );
97+
remove_action( 'wp_head', bigcommerce()->post_types->product_page_meta_description, 0 );
7698
}, 100, 0 );
7799
```
78100
- Added support for custom image alt text. The alt text set in the BigCommerce admin will
@@ -948,6 +970,7 @@
948970

949971

950972
[Unreleased]: https://github.com/moderntribe/bigcommerce/compare/master...develop
973+
[3.9.0]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/3.8.1...3.9.0
951974
[3.8.1]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/3.8.0...3.8.1
952975
[3.8.0]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/3.7.0...3.8.0
953976
[3.7.0]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/3.6.0...3.7.0

assets/css/bc-gutenberg.css

Lines changed: 45 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/bc-gutenberg.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/cart-amp.css

Lines changed: 11 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/cart-amp.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/master-amp.css

Lines changed: 45 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/master-amp.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/master.css

Lines changed: 45 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/master.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/customizer.template.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,14 @@ a.bc-btn--inverse:focus {
3535
border-color: var(--button-color);
3636
}
3737

38+
.bc-video-play-icon {
39+
background-color: var(--button-color);
40+
}
41+
42+
.bc-video-play-icon:before {
43+
color: var(--button-text);
44+
}
45+
3846
.bc-link {
3947
color: var(--button-color);
4048
}

0 commit comments

Comments
 (0)