Feedback from Justin
This commit is contained in:
parent
4ccc1617d5
commit
bc83a04c6c
|
@ -78,7 +78,7 @@ class WC_Settings_Payment_Gateways extends WC_Settings_Page {
|
|||
'default' => 'yes',
|
||||
'type' => 'checkbox',
|
||||
'checkboxgroup' => 'start',
|
||||
'desc_tip' => __( 'Coupons can be applied from the cart and checkout pages.', 'woocommerce' )
|
||||
'desc_tip' => __( 'Coupons can be applied from the cart and checkout pages.', 'woocommerce' ),
|
||||
),
|
||||
|
||||
array(
|
||||
|
|
|
@ -455,14 +455,14 @@ class WC_Settings_Products extends WC_Settings_Page {
|
|||
|
||||
array(
|
||||
'type' => 'sectionend',
|
||||
'id' => 'product_measurement_options'
|
||||
'id' => 'product_measurement_options',
|
||||
),
|
||||
|
||||
array(
|
||||
'title' => __( 'Reviews', 'woocommerce' ),
|
||||
'type' => 'title',
|
||||
'desc' => '',
|
||||
'id' => 'product_rating_options'
|
||||
'id' => 'product_rating_options',
|
||||
),
|
||||
|
||||
array(
|
||||
|
@ -472,7 +472,7 @@ class WC_Settings_Products extends WC_Settings_Page {
|
|||
'default' => 'yes',
|
||||
'type' => 'checkbox',
|
||||
'checkboxgroup' => 'start',
|
||||
'show_if_checked' => 'option'
|
||||
'show_if_checked' => 'option',
|
||||
),
|
||||
|
||||
array(
|
||||
|
@ -482,7 +482,7 @@ class WC_Settings_Products extends WC_Settings_Page {
|
|||
'type' => 'checkbox',
|
||||
'checkboxgroup' => '',
|
||||
'show_if_checked' => 'yes',
|
||||
'autoload' => false
|
||||
'autoload' => false,
|
||||
),
|
||||
|
||||
array(
|
||||
|
@ -492,7 +492,7 @@ class WC_Settings_Products extends WC_Settings_Page {
|
|||
'type' => 'checkbox',
|
||||
'checkboxgroup' => '',
|
||||
'show_if_checked' => 'yes',
|
||||
'autoload' => false
|
||||
'autoload' => false,
|
||||
),
|
||||
|
||||
array(
|
||||
|
@ -502,7 +502,7 @@ class WC_Settings_Products extends WC_Settings_Page {
|
|||
'type' => 'checkbox',
|
||||
'checkboxgroup' => 'end',
|
||||
'show_if_checked' => 'yes',
|
||||
'autoload' => false
|
||||
'autoload' => false,
|
||||
),
|
||||
|
||||
array(
|
||||
|
|
|
@ -37,7 +37,6 @@ class WC_Query {
|
|||
public function __construct() {
|
||||
add_action( 'init', array( $this, 'add_endpoints' ) );
|
||||
if ( ! is_admin() ) {
|
||||
add_action( 'init', array( $this, 'layered_nav_init' ) );
|
||||
add_action( 'wp_loaded', array( $this, 'get_errors' ), 20 );
|
||||
add_filter( 'query_vars', array( $this, 'add_query_vars'), 0 );
|
||||
add_action( 'parse_request', array( $this, 'parse_request'), 0 );
|
||||
|
@ -523,7 +522,7 @@ class WC_Query {
|
|||
'value' => array( $min, $max ),
|
||||
'compare' => 'BETWEEN',
|
||||
'type' => 'DECIMAL',
|
||||
'price_filter' => true
|
||||
'price_filter' => true,
|
||||
);
|
||||
}
|
||||
return array();
|
||||
|
@ -539,7 +538,7 @@ class WC_Query {
|
|||
'value' => isset( $_GET['min_rating'] ) ? floatval( $_GET['min_rating'] ) : 0,
|
||||
'compare' => '>=',
|
||||
'type' => 'DECIMAL',
|
||||
'rating_filter' => true
|
||||
'rating_filter' => true,
|
||||
) : array();
|
||||
}
|
||||
|
||||
|
@ -552,7 +551,7 @@ class WC_Query {
|
|||
return array(
|
||||
'key' => '_visibility',
|
||||
'value' => is_search() ? array( 'visible', 'search' ) : array( 'visible', 'catalog' ),
|
||||
'compare' => $compare
|
||||
'compare' => $compare,
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -567,7 +566,7 @@ class WC_Query {
|
|||
return 'yes' === get_option( 'woocommerce_hide_out_of_stock_items' ) ? array(
|
||||
'key' => '_stock_status',
|
||||
'value' => $status,
|
||||
'compare' => '='
|
||||
'compare' => '=',
|
||||
) : array();
|
||||
}
|
||||
|
||||
|
@ -589,7 +588,7 @@ class WC_Query {
|
|||
'field' => 'slug',
|
||||
'terms' => $data['terms'],
|
||||
'operator' => 'and' === $data['query_type'] ? 'AND' : 'IN',
|
||||
'include_children' => false
|
||||
'include_children' => false,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
@ -611,7 +610,7 @@ class WC_Query {
|
|||
$tax_query[] = array(
|
||||
'taxonomy' => $args['taxonomy'],
|
||||
'terms' => array( $args['term'] ),
|
||||
'field' => 'slug'
|
||||
'field' => 'slug',
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -660,7 +659,9 @@ class WC_Query {
|
|||
/**
|
||||
* @deprecated 2.6.0
|
||||
*/
|
||||
public function layered_nav_init() {}
|
||||
public function layered_nav_init() {
|
||||
_deprecated_function( 'layered_nav_init', '2.6', '' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Get an unpaginated list all product ID's (both filtered and unfiltered). Makes use of transients.
|
||||
|
|
|
@ -172,7 +172,7 @@ class WC_Widget_Rating_Filter extends WC_Widget {
|
|||
|
||||
echo '<span class="star-rating" title="' . esc_attr( sprintf( __( 'Rated %s and above', 'woocommerce' ), $rating ) ). '">
|
||||
<span style="width:' . esc_attr( ( $rating / 5 ) * 100 ) . '%">' . sprintf( __( 'Rated %s and above', 'woocommerce'), $rating ) . '</span>
|
||||
</span> (' . $count . ')';
|
||||
</span> (' . esc_html( $count ) . ')';
|
||||
|
||||
echo '</a>';
|
||||
|
||||
|
|
Loading…
Reference in New Issue