PluginProbe
Tiered Pricing Table for WooCommerce / 2.2.3
Tiered Pricing Table for WooCommerce v2.2.3
8.0.2 7.1.7 7.1.5 7.1.4 7.1.1 6.5.0 6.4.0 6.1.0 trunk 1.0 1.1 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.2.0 2.2.1 2.2.2 2.2.3 2.3.0 2.3.1 2.3.2 2.3.3 All 91 releases
← All changes | src/Settings/Settings.php +15 -3 2.2.1 → 2.2.3 View file →
@@ -178,20 +178,31 @@
178 178 'desc_tip' => true,
179 179 'custom_attributes' => [ 'data-tiered-pricing-premium-setting' => 'yes' ]
180 180 ],
181 181 [
182 - 'title' => __( 'Enable Tiered Pricing on catalog', 'tier-pricing-table' ),
182 + 'title' => __( 'Enable price formatting on the catalog page, widgets, etc',
183 + 'tier-pricing-table' ),
183 184 'id' => self::SETTINGS_PREFIX . 'tiered_price_at_catalog',
184 185 'type' => 'checkbox',
185 186 'default' => 'yes',
186 - 'desc' => __( 'Shows Tiered Pricing at the Catalog',
187 + 'desc' => __( 'Change price formatting on the whole site (show range or minimal price)',
187 188 'tier-pricing-table' ),
188 189 'desc_tip' => true,
189 190 'custom_attributes' => [ 'data-tiered-pricing-premium-setting' => true ]
190 191 ],
191 192 [
192 - 'title' => __( 'Enable Catalog Tiered Pricing for Variable Products',
193 + 'title' => __( 'Enable price formatting on product page ', 'tier-pricing-table' ),
194 + 'id' => self::SETTINGS_PREFIX . 'tiered_price_at_product_page',
195 + 'type' => 'checkbox',
196 + 'default' => 'no',
197 + 'desc' => __( 'Change price for product at product page (show range or minimal price)',
193 198 'tier-pricing-table' ),
199 + 'desc_tip' => true,
200 + 'custom_attributes' => [ 'data-tiered-pricing-premium-setting' => true ]
201 + ],
202 + [
203 + 'title' => __( 'Enable catalog, widget price formatting for variable products',
204 + 'tier-pricing-table' ),
194 205 'id' => self::SETTINGS_PREFIX . 'tiered_price_at_catalog_for_variable',
195 206 'type' => 'checkbox',
196 207 'default' => 'yes',
197 208 'desc' => __( 'Show tiered price at the catalog for variable products. Uses the lowest and the highest prices from all variations',
@@ -320,8 +331,9 @@
320 331
321 332 /* Premium */
322 333 'show_discount_in_cart' => $this->get( 'show_discount_in_cart', 'yes' ),
323 334 'tiered_price_at_catalog' => $this->get( 'tiered_price_at_catalog', 'yes' ),
335 + 'tiered_price_at_product_page' => $this->get( 'tiered_price_at_product_page', 'no' ),
324 336 'tiered_price_at_catalog_for_variable' => $this->get( 'tiered_price_at_catalog_for_variable', 'yes' ),
325 337 'tiered_price_at_catalog_type' => $this->get( 'tiered_price_at_catalog_type', 'yes' ),
326 338 'lowest_prefix' => $this->get( 'lowest_prefix', 'yes' ),
327 339 'show_discount_column' => $this->get( 'show_discount_column', 'yes' ),