Plugin Directory

Changeset 3307474


Ignore:
Timestamp:
06/06/2025 10:46:52 AM (7 months ago)
Author:
scribit
Message:

Version 1.6.1

Location:
shortcodes-finder/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • shortcodes-finder/trunk/README.txt

    r3171350 r3307474  
    11=== Shortcodes Finder ===
    22Contributors: scribit
    3 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&[email protected]&item_name=Shortcodes Finder WordPress plugin donation&no_note=0
     3Donate link: https://www.paypal.com/donate/?cmd=_donations&[email protected]&item_name=Shortcodes%20Finder%20WordPress%20plugin%20donation&no_note=0
    44Tags: shortcode, shortcodes, unused, orphan, search
    55Requires at least: 4.0
    6 Tested up to: 6.6.2
    7 Stable tag: 1.6.0
     6Tested up to: 6.8.1
     7Stable tag: 1.6.1
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    4747== Changelog ==
    4848
     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
    4954= 1.6.0 =
    50 * Search shortcodes in not public custom post types (e.g. Visual composer post types, Divi tempaltes, etc.)
     55* Search shortcodes in not public custom post types (e.g. Visual composer post types, Divi templates, etc.)
    5156* Added results count in search by single shortcode
    5257* Improved unused shortcodes search
  • shortcodes-finder/trunk/admin/css/shortcodes-finder-admin.css

    r3171296 r3307474  
    1414.shortcodes-finder-tab-content .button {
    1515   vertical-align: middle !important;
    16    margin: 5px 0;
    1716}
    1817
     
    257256   -moz-column-width: 250px;
    258257   column-width: 250px;
    259 }
    260 
    261 #shortcodes_finder_about_support {
    262    margin: 1em 0 0 2em;
    263258}
    264259
     
    396391}
    397392
     393.scribit_plugins .plugin-card .desc>ul {
     394   margin-left: 148px;
     395   margin-top: 0;
     396}
     397
    398398.scribit_support_description {
    399399   text-align: right;
    400400   padding-right: 1em;
    401 }
    402 
    403 .shortcodes-finder-tab-content .scribit_support_button {
    404    line-height: 1.8;
    405    min-height: auto;
    406401}
    407402
  • shortcodes-finder/trunk/admin/js/shortcodes-finder-admin.js

    r3171296 r3307474  
    135135
    136136         //$('.shortcodes_result').append(result);
     137         if (result == "") return;
    137138
    138139         var result_array = JSON.parse(result);
  • shortcodes-finder/trunk/admin/partials/shortcodes-finder-admin-display.php

    r3171350 r3307474  
    1515define('SHORTCODES_FINDER_MAX_CONTENT_CHAR', 100);
    1616
    17 error_reporting(E_ERROR);
     17// error_reporting(E_ERROR);
    1818
    1919/**
     
    773773                                " class="button button-primary"><?php echo esc_html__('Install') ?></a></li>
    774774                            <?php endif; ?>
    775                             <li><a href="
     775                            <li><a target="_blank" href="
    776776                                <?php if ( is_multisite() ) : ?>
    777777                                    <?php echo esc_url( network_admin_url( 'plugin-install.php?tab=plugin-information&amp;plugin='. $plugin_slug ) ) ?>
     
    818818                                </li>
    819819                            <?php endif; ?>
    820                             <li><a href="
     820                            <li><a target="_blank" href="
    821821                                <?php if ( is_multisite() ) : ?>
    822822                                    <?php echo esc_url( network_admin_url( 'plugin-install.php?tab=plugin-information&amp;plugin='. $plugin_slug ) ) ?>
  • shortcodes-finder/trunk/shortcodes-finder-consts.php

    r3171296 r3307474  
    88 */
    99
    10 define('SHORTCODES_FINDER_VERSION', '1.6.0');
     10define('SHORTCODES_FINDER_VERSION', '1.6.1');
    1111
    1212define('SHORTCODES_FINDER_OPTION_VERSION', 'sf_version');   // From version 1.3.0
  • shortcodes-finder/trunk/shortcodes-finder.php

    r3171296 r3307474  
    1616 * Plugin URI:        https://www.scribit.it/en/wordpress-plugins/find-wordpress-website-shortcodes-in-one-click/
    1717 * 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.0
     18 * Version:           1.6.1
    1919 * Author:            Scribit
    2020 * Author URI:        https://www.scribit.it/
Note: See TracChangeset for help on using the changeset viewer.