Plugin Directory

Changeset 3342957


Ignore:
Timestamp:
08/11/2025 02:51:03 PM (8 months ago)
Author:
coolcoders
Message:

version 4.1.2 updates
error removed for woo-commerce tabs links

Location:
custom-checkout-layouts-for-woocommerce/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • custom-checkout-layouts-for-woocommerce/trunk/asserts/css/admin_panel.css

    r3337583 r3342957  
    165165    background: #fff;
    166166}
    167 
     167.cclw_form_settings_wrap h2.nav-tab-wrapper{
     168    width: 60%;
     169}
    168170/** Pro page css */
    169171.wrap.pro_page_design th {
  • custom-checkout-layouts-for-woocommerce/trunk/asserts/js/cclw_admin_scripts.js

    r3338205 r3342957  
    5252    /** Customize checkout page tabs  */
    5353    document.addEventListener('DOMContentLoaded', function () {
    54         const tabs = document.querySelectorAll('.nav-tab');
     54        const tabs = document.querySelectorAll('.cclw_form_settings_wrap .nav-tab');
    5555        const billing = document.getElementById('cclw_billing_fields');
    5656        const shipping = document.getElementById('cclw_shipping_fields');
     
    6565                    billing.style.display = 'block';
    6666                    shipping.style.display = 'none';
    67                 } else {
     67                } else if (this.dataset.tab === 'shipping') {
    6868                    billing.style.display = 'none';
    6969                    shipping.style.display = 'block';
  • custom-checkout-layouts-for-woocommerce/trunk/readme.txt

    r3339293 r3342957  
    55Tested up to: 6.8
    66Requires PHP: 5.6
    7 Stable tag: 4.1.1
     7Stable tag: 4.1.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8383
    8484== 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>
    9090<pre>
    9191 Improvement: Compatibility with woocommerce and wordpress .
  • custom-checkout-layouts-for-woocommerce/trunk/woocommerce-one-page-checkout-and-layouts.php

    r3339293 r3342957  
    66Author: BluePlugins
    77Author URI: http://blueplugins.com
    8 Version: 4.1.1
     8Version: 4.1.2
    99License:GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    1818    die;
    1919}
    20 
    21 
    22 define( 'CCLW_VERSION', '4.1.1' );
     20 
     21
     22define( 'CCLW_VERSION', '4.1.2' );
    2323define('CCLW_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
    2424define('CCLW_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.