Skip to content

Commit

Permalink
Merge pull request #132 from moderntribe/release/1.4.2
Browse files Browse the repository at this point in the history
Package version 1.4.2
  • Loading branch information
bookernath authored Jan 15, 2019
2 parents f5f300c + ebeaad7 commit 9dd9516
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [1.4.2]

### Fixed

- Fixed inconsistent defaults for ajax cart setting.

## [1.4.1]

### Fixed
Expand Down Expand Up @@ -280,6 +286,7 @@


[Unreleased]: https://github.com/moderntribe/bigcommerce/compare/master...develop
[1.4.0]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/1.4.1...1.4.2
[1.4.0]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/1.4.0...1.4.1
[1.4.0]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/1.3.0...1.4.0
[1.3.0]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/1.2.0...1.3.0
Expand Down
2 changes: 1 addition & 1 deletion bigcommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: BigCommerce for WordPress
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.
Author: BigCommerce
Version: 1.4.1
Version: 1.4.2
Author URI: https://www.bigcommerce.com/wordpress
Requires PHP: 5.6.24
Text Domain: bigcommerce
Expand Down
2 changes: 1 addition & 1 deletion build-timestamp.php
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<?php
define('BIGCOMMERCE_ASSETS_BUILD_TIMESTAMP', '3.25.01.15.2019');
define('BIGCOMMERCE_ASSETS_BUILD_TIMESTAMP', '3.40.01.15.2019');
2 changes: 1 addition & 1 deletion src/BigCommerce/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
namespace BigCommerce;

class Plugin {
const VERSION = '1.4.1';
const VERSION = '1.4.2';

protected static $_instance;

Expand Down
2 changes: 1 addition & 1 deletion src/BigCommerce/Templates/Product_Form.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function get_data() {
self::MAX_QUANTITY => $this->get_max_quantity( (int) $product->order_quantity_maximum, $product->get_inventory_level() ),
self::OPTIONS => $this->options[ self::SHOW_OPTIONS ] ? $this->get_options( $product ) : '',
self::MODIFIERS => $this->options[ self::SHOW_OPTIONS ] ? $this->get_modifiers( $product ) : '',
self::AJAX_ADD_TO_CART => (bool) get_option( Cart::OPTION_AJAX_CART, false ),
self::AJAX_ADD_TO_CART => (bool) get_option( Cart::OPTION_AJAX_CART, true ),
self::QUANTITY_FIELD_TYPE => $this->options[ self::SHOW_OPTIONS ] ? 'number' : 'hidden',
];
}
Expand Down

0 comments on commit 9dd9516

Please sign in to comment.