Changeset 3307474
- Timestamp:
- 06/06/2025 10:46:52 AM (7 months ago)
- Location:
- shortcodes-finder/trunk
- Files:
-
- 6 edited
-
README.txt (modified) (2 diffs)
-
admin/css/shortcodes-finder-admin.css (modified) (3 diffs)
-
admin/js/shortcodes-finder-admin.js (modified) (1 diff)
-
admin/partials/shortcodes-finder-admin-display.php (modified) (3 diffs)
-
shortcodes-finder-consts.php (modified) (1 diff)
-
shortcodes-finder.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
shortcodes-finder/trunk/README.txt
r3171350 r3307474 1 1 === Shortcodes Finder === 2 2 Contributors: scribit 3 Donate link: https://www.paypal.com/ cgi-bin/webscr?cmd=_donations&[email protected]&item_name=Shortcodes Finder WordPress plugindonation&no_note=03 Donate link: https://www.paypal.com/donate/?cmd=_donations&[email protected]&item_name=Shortcodes%20Finder%20WordPress%20plugin%20donation&no_note=0 4 4 Tags: shortcode, shortcodes, unused, orphan, search 5 5 Requires at least: 4.0 6 Tested up to: 6. 6.27 Stable tag: 1.6. 06 Tested up to: 6.8.1 7 Stable tag: 1.6.1 8 8 Requires PHP: 5.6 9 9 License: GPLv2 or later … … 47 47 == Changelog == 48 48 49 = 1.6.1 = 50 * Fixed blocking error in some cases of unused shortcodes search 51 * WordPress 6.8.1 compatibility 52 * Minor graphic changes 53 49 54 = 1.6.0 = 50 * Search shortcodes in not public custom post types (e.g. Visual composer post types, Divi temp altes, etc.)55 * Search shortcodes in not public custom post types (e.g. Visual composer post types, Divi templates, etc.) 51 56 * Added results count in search by single shortcode 52 57 * Improved unused shortcodes search -
shortcodes-finder/trunk/admin/css/shortcodes-finder-admin.css
r3171296 r3307474 14 14 .shortcodes-finder-tab-content .button { 15 15 vertical-align: middle !important; 16 margin: 5px 0;17 16 } 18 17 … … 257 256 -moz-column-width: 250px; 258 257 column-width: 250px; 259 }260 261 #shortcodes_finder_about_support {262 margin: 1em 0 0 2em;263 258 } 264 259 … … 396 391 } 397 392 393 .scribit_plugins .plugin-card .desc>ul { 394 margin-left: 148px; 395 margin-top: 0; 396 } 397 398 398 .scribit_support_description { 399 399 text-align: right; 400 400 padding-right: 1em; 401 }402 403 .shortcodes-finder-tab-content .scribit_support_button {404 line-height: 1.8;405 min-height: auto;406 401 } 407 402 -
shortcodes-finder/trunk/admin/js/shortcodes-finder-admin.js
r3171296 r3307474 135 135 136 136 //$('.shortcodes_result').append(result); 137 if (result == "") return; 137 138 138 139 var result_array = JSON.parse(result); -
shortcodes-finder/trunk/admin/partials/shortcodes-finder-admin-display.php
r3171350 r3307474 15 15 define('SHORTCODES_FINDER_MAX_CONTENT_CHAR', 100); 16 16 17 error_reporting(E_ERROR);17 // error_reporting(E_ERROR); 18 18 19 19 /** … … 773 773 " class="button button-primary"><?php echo esc_html__('Install') ?></a></li> 774 774 <?php endif; ?> 775 <li><a href="775 <li><a target="_blank" href=" 776 776 <?php if ( is_multisite() ) : ?> 777 777 <?php echo esc_url( network_admin_url( 'plugin-install.php?tab=plugin-information&plugin='. $plugin_slug ) ) ?> … … 818 818 </li> 819 819 <?php endif; ?> 820 <li><a href="820 <li><a target="_blank" href=" 821 821 <?php if ( is_multisite() ) : ?> 822 822 <?php echo esc_url( network_admin_url( 'plugin-install.php?tab=plugin-information&plugin='. $plugin_slug ) ) ?> -
shortcodes-finder/trunk/shortcodes-finder-consts.php
r3171296 r3307474 8 8 */ 9 9 10 define('SHORTCODES_FINDER_VERSION', '1.6. 0');10 define('SHORTCODES_FINDER_VERSION', '1.6.1'); 11 11 12 12 define('SHORTCODES_FINDER_OPTION_VERSION', 'sf_version'); // From version 1.3.0 -
shortcodes-finder/trunk/shortcodes-finder.php
r3171296 r3307474 16 16 * Plugin URI: https://www.scribit.it/en/wordpress-plugins/find-wordpress-website-shortcodes-in-one-click/ 17 17 * Description: Find, test, disable, clean and get informations about the shortcodes in your Wordpress website posts, pages and custom contents (also in multisite network). 18 * Version: 1.6. 018 * Version: 1.6.1 19 19 * Author: Scribit 20 20 * Author URI: https://www.scribit.it/
Note: See TracChangeset
for help on using the changeset viewer.