Changeset 3479486
- Timestamp:
- 03/10/2026 07:48:17 PM (3 weeks ago)
- Location:
- folderra-smart-folder-organizer/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (3 diffs)
-
screenshot-10.png (modified) (previous)
-
wpsmartfolder.php (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
folderra-smart-folder-organizer/trunk/readme.txt
r3475276 r3479486 5 5 Tested up to: 6.9.1 6 6 Requires PHP: 7.4 7 Stable tag: 1.3. 07 Stable tag: 1.3.1 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 114 114 8. Media Organizer: Used tab with usage preview 115 115 9. Media Organizer: Duplicates detection 116 10. Media Organizer: Unused tab 117 11. Recently Modified workflow panels 116 10. Recently Modified workflow panels 118 117 119 118 == Privacy == … … 122 121 123 122 == Changelog == 123 124 = 1.3.1 = 125 * Fixed dashboard layout issue where Recently Modified boxes could overflow horizontally with long content titles. 126 * Improved alignment and width consistency of dashboard cards. 124 127 125 128 = 1.3.0 = -
folderra-smart-folder-organizer/trunk/wpsmartfolder.php
r3475276 r3479486 4 4 * Plugin URI: https://wpsmartfolder.com 5 5 * Description: Organize your WordPress pages and posts with smart folders, drag & drop, and advanced structure management. 6 * Version: 1.3. 06 * Version: 1.3.1 7 7 * Author: DaveLabs 8 8 * Text Domain: folderra-smart-folder-organizer … … 21 21 22 22 // Main version constant 23 define('FOLD82SM_VERSION', '1.3. 0');23 define('FOLD82SM_VERSION', '1.3.1'); 24 24 25 25 // Backward compatibility for PRO plugin integration … … 732 732 733 733 // ===== RECENTLY MODIFIED (FREE) ===== 734 echo '<div style="display:grid; grid-template-columns: 1fr 1fr; gap:20px; margin-top:20px;">';734 echo '<div style="display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:20px; margin-top:20px;">'; 735 735 fold82sm_render_recently_modified_box( 736 736 'page', … … 2124 2124 ) ); 2125 2125 2126 echo '<div class="fold82sm-recent-box" style="background:#fff; padding:20px; border-radius:8px; border-left:4px solid ' . esc_attr( $border_color ) . '; box-shadow:0 4px 12px ' . esc_attr( $shadow_color ) . '; ">';2126 echo '<div class="fold82sm-recent-box" style="background:#fff; padding:20px; border-radius:8px; border-left:4px solid ' . esc_attr( $border_color ) . '; box-shadow:0 4px 12px ' . esc_attr( $shadow_color ) . '; min-width:0; width:100%; box-sizing:border-box;">'; 2127 2127 echo ' <div style="display:flex; align-items:center; gap:10px; margin-bottom:10px;">'; 2128 2128 echo ' <span class="dashicons dashicons-' . esc_attr( $icon ) . '" style="font-size:22px; color:' . esc_attr( $icon_color ) . ';"></span>'; … … 2175 2175 } 2176 2176 2177 echo '<div class="fold82sm-recent-item" style="display:flex; align-items:center; justify-content:space-between; gap:12px; padding:12px; background:#f8f9fa; border-radius:6px; border:1px solid #e9ecef; ">';2178 2179 echo ' <div style=" min-width:0;">';2177 echo '<div class="fold82sm-recent-item" style="display:flex; align-items:center; justify-content:space-between; gap:12px; padding:12px; background:#f8f9fa; border-radius:6px; border:1px solid #e9ecef; min-width:0; width:100%; box-sizing:border-box;">'; 2178 2179 echo ' <div style="flex:1 1 auto; min-width:0; overflow:hidden;">'; 2180 2180 echo ' <div style="font-size:13px; font-weight:600; color:#2c3338; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;">'; 2181 2181 echo esc_html( $item_title ) . $badge; … … 3070 3070 plugins_url( 'js/wpsmartfolder-metabox.js', __FILE__ ), 3071 3071 array( 'jquery' ), 3072 defined( 'FOLD82SM_VERSION' ) ? FOLD82SM_VERSION : '1.3. 0',3072 defined( 'FOLD82SM_VERSION' ) ? FOLD82SM_VERSION : '1.3.1', 3073 3073 true 3074 3074 ); … … 3115 3115 plugins_url( 'js/folderra-editor-fixes.js', __FILE__ ), 3116 3116 array( 'wp-data', 'wp-dom-ready', 'wp-edit-post' ), 3117 '1.3. 0',3117 '1.3.1', 3118 3118 true 3119 3119 );
Note: See TracChangeset
for help on using the changeset viewer.