Plugin Directory

Changeset 3291403


Ignore:
Timestamp:
05/11/2025 05:50:42 PM (11 months ago)
Author:
wowholic
Message:

Update spacingjs, description and screenshots

Location:
wowholic-core
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • wowholic-core/trunk/includes/actions/grid.php

    r2866428 r3291403  
    205205        <script type="text/javascript">
    206206            document.addEventListener('DOMContentLoaded', () => {
    207                 var toggleGrid = document.querySelector('.js-wowcore-toggle-grid');
    208                 var coreGrid = document.querySelector('.js-wowcore-grid');
    209                 toggleGrid.addEventListener('click', () => {
    210                     toggleGrid.classList.toggle('is-active');
    211                     coreGrid.classList.toggle('is-active');
    212                 });
     207                const toggleGrid = document.querySelector('.js-wowcore-toggle-grid');
     208                const coreGrid = document.querySelector('.js-wowcore-grid');
     209
     210                if (toggleGrid && coreGrid) {
     211                    toggleGrid.addEventListener('click', () => {
     212                        toggleGrid.classList.toggle('is-active');
     213                        coreGrid.classList.toggle('is-active');
     214                    });
     215                }
    213216            });
    214217        </script>
  • wowholic-core/trunk/includes/actions/layout.php

    r2866428 r3291403  
    66if ( carbon_get_theme_option( 'wowcore_enable_layout_spacing' ) ) {
    77    add_action( 'wp_enqueue_scripts', function () {
    8         wp_enqueue_script( 'spacingjs-defer', WOWCORE_PLUGIN_URL . 'assets/js/spacingjs.js', [], null, true );
     8        wp_enqueue_script( 'spacingjs-defer', WOWCORE_PLUGIN_URL . 'assets/js/spacing.min.js', [], null, true );
    99    } );
    1010}
  • wowholic-core/trunk/readme.txt

    r3231152 r3291403  
    66Tags: utility, productivity, efficiency, custom themes, development
    77Requires at least: 5.6
    8 Tested up to: 6.7.1
    9 Stable tag: 1.1.0
     8Tested up to: 6.8.1
     9Stable tag: 1.1.1
    1010Requires PHP: 7.0
    1111
     
    4040* Allow removing unnecessary buttons from TinyMCE *(only if Classic Editor is active)*
    4141* Enable Theme Options *(only if ACF is active)*
     42* Add label next to Flexible Content Layout name *(only if ACF is active)*
    4243* Allow shortcodes in excerpts, textareas and text fields *(only if ACF is active)*
     44* Enable pretty Search URL
    4345* Enable `[email]` shortcode for antispam
    4446* Change WordPress' upload size limit
     
    7678== Changelog ==
    7779
     80= 1.1.1 =
     81Release Date: May 9th, 2025
     82
     83* Update spacing.js
     84* Update description
     85
    7886= 1.1.0 =
    7987Release Date: January 29th, 2025
  • wowholic-core/trunk/wowholic-core.php

    r3231152 r3291403  
    44 * Plugin URI: https://github.com/Wowholic/CORE
    55 * Description: Utility functions and options for common tasks in WordPress.
    6  * Version: 1.1.0
     6 * Version: 1.1.1
    77 * Author: Wowholic
    88 * Author URI: https://wowholic.com
Note: See TracChangeset for help on using the changeset viewer.