You've already forked wc-tier-and-package-prices
Release version 1.2.1 - Critical bugfixes for v1.2.0
Fixed two critical bugs introduced in v1.2.0: 1. Admin UI table structure mismatch - CSS still had flexbox styling from old template structure, breaking new table layout. Updated admin.css to properly style table rows with standard table cell padding. 2. Frontend pricing display not showing - Template was checking global enable settings before display. Removed those checks so pricing shows if configured on product AND display setting is enabled. Files changed: - wc-tier-and-package-prices.php - Version bump to 1.2.1 - composer.json - Version bump to 1.2.1 - CLAUDE.md - Updated version and documented fixes - CHANGELOG.md - Added detailed v1.2.1 entry with root cause analysis - assets/css/admin.css - Fixed table styling (removed flexbox) - templates/frontend/pricing-table.twig - Removed global enable checks 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
* Plugin Name: WooCommerce Tier and Package Prices
|
||||
* Plugin URI: https://src.bundespruefstelle.ch/magdev/wc-tier-package-prices
|
||||
* Description: Add tier pricing and package prices to WooCommerce products with configurable quantities at fixed prices
|
||||
* Version: 1.2.0
|
||||
* Version: 1.2.1
|
||||
* Author: Marco Graetsch
|
||||
* Author URI: https://src.bundespruefstelle.ch/magdev
|
||||
* Text Domain: wc-tier-package-prices
|
||||
@@ -23,7 +23,7 @@ if (!defined('ABSPATH')) {
|
||||
|
||||
// Define plugin constants
|
||||
if (!defined('WC_TPP_VERSION')) {
|
||||
define('WC_TPP_VERSION', '1.2.0');
|
||||
define('WC_TPP_VERSION', '1.2.1');
|
||||
}
|
||||
if (!defined('WC_TPP_PLUGIN_DIR')) {
|
||||
define('WC_TPP_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
||||
|
||||
Reference in New Issue
Block a user