Changeset 3291403
- Timestamp:
- 05/11/2025 05:50:42 PM (11 months ago)
- Location:
- wowholic-core
- Files:
-
- 10 edited
-
assets/screenshot-1.png (modified) (previous)
-
assets/screenshot-2.png (modified) (previous)
-
assets/screenshot-3.png (modified) (previous)
-
assets/screenshot-4.png (modified) (previous)
-
assets/screenshot-5.png (modified) (previous)
-
assets/screenshot-6.png (modified) (previous)
-
trunk/includes/actions/grid.php (modified) (1 diff)
-
trunk/includes/actions/layout.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/wowholic-core.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wowholic-core/trunk/includes/actions/grid.php
r2866428 r3291403 205 205 <script type="text/javascript"> 206 206 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 } 213 216 }); 214 217 </script> -
wowholic-core/trunk/includes/actions/layout.php
r2866428 r3291403 6 6 if ( carbon_get_theme_option( 'wowcore_enable_layout_spacing' ) ) { 7 7 add_action( 'wp_enqueue_scripts', function () { 8 wp_enqueue_script( 'spacingjs-defer', WOWCORE_PLUGIN_URL . 'assets/js/spacing js.js', [], null, true );8 wp_enqueue_script( 'spacingjs-defer', WOWCORE_PLUGIN_URL . 'assets/js/spacing.min.js', [], null, true ); 9 9 } ); 10 10 } -
wowholic-core/trunk/readme.txt
r3231152 r3291403 6 6 Tags: utility, productivity, efficiency, custom themes, development 7 7 Requires at least: 5.6 8 Tested up to: 6. 7.19 Stable tag: 1.1. 08 Tested up to: 6.8.1 9 Stable tag: 1.1.1 10 10 Requires PHP: 7.0 11 11 … … 40 40 * Allow removing unnecessary buttons from TinyMCE *(only if Classic Editor is active)* 41 41 * Enable Theme Options *(only if ACF is active)* 42 * Add label next to Flexible Content Layout name *(only if ACF is active)* 42 43 * Allow shortcodes in excerpts, textareas and text fields *(only if ACF is active)* 44 * Enable pretty Search URL 43 45 * Enable `[email]` shortcode for antispam 44 46 * Change WordPress' upload size limit … … 76 78 == Changelog == 77 79 80 = 1.1.1 = 81 Release Date: May 9th, 2025 82 83 * Update spacing.js 84 * Update description 85 78 86 = 1.1.0 = 79 87 Release Date: January 29th, 2025 -
wowholic-core/trunk/wowholic-core.php
r3231152 r3291403 4 4 * Plugin URI: https://github.com/Wowholic/CORE 5 5 * Description: Utility functions and options for common tasks in WordPress. 6 * Version: 1.1. 06 * Version: 1.1.1 7 7 * Author: Wowholic 8 8 * Author URI: https://wowholic.com
Note: See TracChangeset
for help on using the changeset viewer.