Skip to content

Commit 9dd9516

Browse files
authored
Merge pull request #132 from moderntribe/release/1.4.2
Package version 1.4.2
2 parents f5f300c + ebeaad7 commit 9dd9516

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [1.4.2]
4+
5+
### Fixed
6+
7+
- Fixed inconsistent defaults for ajax cart setting.
8+
39
## [1.4.1]
410

511
### Fixed
@@ -280,6 +286,7 @@
280286

281287

282288
[Unreleased]: https://github.com/moderntribe/bigcommerce/compare/master...develop
289+
[1.4.0]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/1.4.1...1.4.2
283290
[1.4.0]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/1.4.0...1.4.1
284291
[1.4.0]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/1.3.0...1.4.0
285292
[1.3.0]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/1.2.0...1.3.0

bigcommerce.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: BigCommerce for WordPress
44
Description: Scale your ecommerce business with WordPress on the front-end and BigCommerce on the back end. Free up server resources from things like catalog management, processing payments, and managing fulfillment logistics.
55
Author: BigCommerce
6-
Version: 1.4.1
6+
Version: 1.4.2
77
Author URI: https://www.bigcommerce.com/wordpress
88
Requires PHP: 5.6.24
99
Text Domain: bigcommerce

build-timestamp.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?php
2-
define('BIGCOMMERCE_ASSETS_BUILD_TIMESTAMP', '3.25.01.15.2019');
2+
define('BIGCOMMERCE_ASSETS_BUILD_TIMESTAMP', '3.40.01.15.2019');

src/BigCommerce/Plugin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
namespace BigCommerce;
55

66
class Plugin {
7-
const VERSION = '1.4.1';
7+
const VERSION = '1.4.2';
88

99
protected static $_instance;
1010

src/BigCommerce/Templates/Product_Form.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function get_data() {
4040
self::MAX_QUANTITY => $this->get_max_quantity( (int) $product->order_quantity_maximum, $product->get_inventory_level() ),
4141
self::OPTIONS => $this->options[ self::SHOW_OPTIONS ] ? $this->get_options( $product ) : '',
4242
self::MODIFIERS => $this->options[ self::SHOW_OPTIONS ] ? $this->get_modifiers( $product ) : '',
43-
self::AJAX_ADD_TO_CART => (bool) get_option( Cart::OPTION_AJAX_CART, false ),
43+
self::AJAX_ADD_TO_CART => (bool) get_option( Cart::OPTION_AJAX_CART, true ),
4444
self::QUANTITY_FIELD_TYPE => $this->options[ self::SHOW_OPTIONS ] ? 'number' : 'hidden',
4545
];
4646
}

0 commit comments

Comments
 (0)