Skip to content

Commit

Permalink
manual merge to 1.0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
gine committed Jan 29, 2017
2 parents 25db86f + b7b3811 commit 999f233
Show file tree
Hide file tree
Showing 11 changed files with 412 additions and 475 deletions.
2 changes: 1 addition & 1 deletion assets/css/admin-styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ span.wpbo_product_values {
}

/* --------- wpbo company notice ---------- */
#wpbo-company-notice .inside {
#wpqu-company-notice .inside {
text-align: center;
}

Expand Down
Binary file added assets/img/rapid-order-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/img/wpbo-logo.png
Binary file not shown.
2 changes: 1 addition & 1 deletion assets/js/ipq_input_value_validation.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jQuery(document).ready( function($) {
new_qty = +new_qty + (+step - +rem);

// Max Value Validation
if ( +new_qty > +max ) {
if ( max > 0 && +new_qty > +max ) {
new_qty = +new_qty - +step;
}
}
Expand Down
1 change: 0 additions & 1 deletion includes/class-wcqu-filters.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ public function input_min_value( $default, $product ) {

// Get Value from Rule
$min = wcqu_get_value_from_rule( 'min', $product, $rule );

// Return Value
if ( $min == '' or $min == null or (isset($min['min']) and $min['min'] == "")) {
return $default;
Expand Down
Loading

0 comments on commit 999f233

Please sign in to comment.