Changeset 3359754
- Timestamp:
- 09/11/2025 10:36:26 AM (7 months ago)
- Location:
- lyxity/trunk
- Files:
-
- 5 edited
-
assets/js/realtime-status.js (modified) (2 diffs)
-
lyxity.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
templates/dashboard-page.php (modified) (2 diffs)
-
templates/settings-page.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lyxity/trunk/assets/js/realtime-status.js
r3356931 r3359754 135 135 136 136 if (!requests || !Array.isArray(requests) || !requests.length) { 137 $tbody.append('<tr><td colspan=" 5" class="text-center" style="padding:40px;color:#646970;">No requests found.</td></tr>');137 $tbody.append('<tr><td colspan="6" class="text-center" style="padding:40px;color:#646970;">No requests found.</td></tr>'); 138 138 return; 139 139 } 140 140 console.log('Rendering requests:', requests); 141 141 requests.forEach(function (r) { 142 142 … … 173 173 174 174 tr.append($('<td/>').text(finalCount)); 175 176 // Extract articles created count - check multiple possible paths 177 const articlesCreated = pick(statistics, 'articlesCompleted', 'ArticlesCompleted') || 178 '—'; 179 180 tr.append($('<td/>').text(articlesCreated)); 175 181 176 182 // Extract Status from nested Status object - check multiple possible paths -
lyxity/trunk/lyxity.php
r3356931 r3359754 3 3 Plugin Name: Lyxity 4 4 Description: The art of modern search engine optimization 5 Version: 1.9.05 Version: 2.0.0 6 6 Author: Infoforte 7 7 Author URI: https://infoforte.com … … 20 20 21 21 // Define plugin constants 22 define('LYXITY_VERSION', ' 1.9.0');22 define('LYXITY_VERSION', '2.0.0'); 23 23 define('LYXITY_FILE', __FILE__); 24 24 define('LYXITY_PATH', plugin_dir_path(__FILE__)); -
lyxity/trunk/readme.txt
r3356931 r3359754 4 4 Requires at least: 5.0 5 5 Tested up to: 6.8 6 Stable tag: 1.9.06 Stable tag: 2.0.0 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later … … 113 113 114 114 == Changelog == 115 = 2.0.0 = 116 - Bug fixes and other improvements 117 - Added language for AU / NZ 118 - Added column of article created in dashboard 119 115 120 = 1.9.0 = 116 121 - Bug fixes and other improvements -
lyxity/trunk/templates/dashboard-page.php
r3356931 r3359754 196 196 <th class="column-created"><?php echo esc_html__('Created', 'lyxity'); ?></th> 197 197 <th class="column-updated"><?php echo esc_html__('Updated', 'lyxity'); ?></th> 198 <th class="column-articles"><?php echo esc_html__('Articles', 'lyxity'); ?></th> 198 <th class="column-articles"><?php echo esc_html__('Articles Requested', 'lyxity'); ?></th> 199 <th class="column-articles-created"><?php echo esc_html__('Articles Created', 'lyxity'); ?></th> 199 200 <th class="column-status"><?php echo esc_html__('Status', 'lyxity'); ?></th> 200 201 </tr> … … 202 203 <tbody> 203 204 <tr class="lyxity-loading-row"> 204 <td colspan=" 5">205 <td colspan="6"> 205 206 <div class="lyxity-loading-indicator"> 206 207 <span class="spinner is-active"></span> -
lyxity/trunk/templates/settings-page.php
r3350309 r3359754 244 244 <label for="lyxity_default_language" class="form-label"><?php esc_html_e('Default Language', 'lyxity'); ?></label> 245 245 <select id="lyxity_default_language" name="lyxity_default_language" class="form-control"> 246 <option value="en-AU" <?php selected($default_language, 'en-AU'); ?>> 247 <?php esc_html_e('English (Australia)', 'lyxity'); ?> 248 </option> 249 <option value="en-NZ" <?php selected($default_language, 'en-NZ'); ?>> 250 <?php esc_html_e('English (New Zealand)', 'lyxity'); ?> 251 </option> 246 252 <option value="en-GB" <?php selected($default_language, 'en-GB'); ?>> 247 253 <?php esc_html_e('English (UK)', 'lyxity'); ?>
Note: See TracChangeset
for help on using the changeset viewer.