Changeset 3342957
- Timestamp:
- 08/11/2025 02:51:03 PM (8 months ago)
- Location:
- custom-checkout-layouts-for-woocommerce/trunk
- Files:
-
- 4 edited
-
asserts/css/admin_panel.css (modified) (1 diff)
-
asserts/js/cclw_admin_scripts.js (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
woocommerce-one-page-checkout-and-layouts.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
custom-checkout-layouts-for-woocommerce/trunk/asserts/css/admin_panel.css
r3337583 r3342957 165 165 background: #fff; 166 166 } 167 167 .cclw_form_settings_wrap h2.nav-tab-wrapper{ 168 width: 60%; 169 } 168 170 /** Pro page css */ 169 171 .wrap.pro_page_design th { -
custom-checkout-layouts-for-woocommerce/trunk/asserts/js/cclw_admin_scripts.js
r3338205 r3342957 52 52 /** Customize checkout page tabs */ 53 53 document.addEventListener('DOMContentLoaded', function () { 54 const tabs = document.querySelectorAll('. nav-tab');54 const tabs = document.querySelectorAll('.cclw_form_settings_wrap .nav-tab'); 55 55 const billing = document.getElementById('cclw_billing_fields'); 56 56 const shipping = document.getElementById('cclw_shipping_fields'); … … 65 65 billing.style.display = 'block'; 66 66 shipping.style.display = 'none'; 67 } else {67 } else if (this.dataset.tab === 'shipping') { 68 68 billing.style.display = 'none'; 69 69 shipping.style.display = 'block'; -
custom-checkout-layouts-for-woocommerce/trunk/readme.txt
r3339293 r3342957 5 5 Tested up to: 6.8 6 6 Requires PHP: 5.6 7 Stable tag: 4.1. 17 Stable tag: 4.1.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 83 83 84 84 == Changelog == 85 <h2> Version 4.1. 1| 04 Aug 2025</h2>86 <pre> 87 Improvement: error fix for version 4.1.0.88 </pre> 89 <h2> Version 4.1. 0| 30 july 2025</h2>85 <h2> Version 4.1.2| 11 aug 2025</h2> 86 <pre> 87 Improvement: Error with woocomerce tabs removed . 88 </pre> 89 <h2> Version 4.1.1| 30 july 2025</h2> 90 90 <pre> 91 91 Improvement: Compatibility with woocommerce and wordpress . -
custom-checkout-layouts-for-woocommerce/trunk/woocommerce-one-page-checkout-and-layouts.php
r3339293 r3342957 6 6 Author: BluePlugins 7 7 Author URI: http://blueplugins.com 8 Version: 4.1. 18 Version: 4.1.2 9 9 License:GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 18 18 die; 19 19 } 20 21 22 define( 'CCLW_VERSION', '4.1. 1' );20 21 22 define( 'CCLW_VERSION', '4.1.2' ); 23 23 define('CCLW_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); 24 24 define('CCLW_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset
for help on using the changeset viewer.