Plugin Directory

Changeset 3483569


Ignore:
Timestamp:
03/16/2026 08:12:52 AM (12 days ago)
Author:
nsp-code
Message:

Version: 1.9.5

Location:
taxonomy-terms-order
Files:
25 added
4 edited

Legend:

Unmodified
Added
Removed
  • taxonomy-terms-order/trunk/include/class.functions.php

    r3411067 r3483569  
    7575                    ?>
    7676                        <div id="cpt_info_box">                   
    77                             <p><?php esc_html_e( "Did you find this plugin useful? Please support our work by purchasing the advanced version or write an article about this plugin in your blog with a link to our site", 'taxonomy-terms-order' ) ?> <strong><a target="_blank" href="https://www.nsp-code.com/">https://www.nsp-code.com/</a></strong></p>
    78                             <h4><a href="https://www.nsp-code.com/premium-plugins/advanced-taxonomy-terms-order/" target="_blank"><img width="151" src="<?php echo esc_url ( TOURL . "/images/logo.png" ) ?>" class="attachment-large size-large wp-image-36927" alt=""></a> <?php esc_html_e( "Did you know there is an Advanced Version of this plug-in?", 'taxonomy-terms-order' ) ?> <a target="_blank" href="https://www.nsp-code.com/premium-plugins/advanced-taxonomy-terms-order/"><?php esc_html_e( "Read more", 'taxonomy-terms-order' ) ?></a></h4>
     77                            <h4><a href="https://www.nsp-code.com/premium-plugins/advanced-taxonomy-terms-order/" target="_blank"><img width="151" src="<?php echo esc_url ( TOURL . "/images/logo.png" ) ?>" class="attachment-large size-large wp-image-36927" alt=""></a><br /><?php esc_html_e( "Did you know there is an Advanced Version of this plug-in?", 'taxonomy-terms-order' ) ?> <a target="_blank" href="https://www.nsp-code.com/premium-plugins/advanced-taxonomy-terms-order/"><?php esc_html_e( "Read more", 'taxonomy-terms-order' ) ?></a></h4>
    7978                            <p><?php esc_html_e( "Check our", 'taxonomy-terms-order' ) ?> <a target="_blank" href="https://wordpress.org/plugins/post-types-order/">Post Types Order</a> <?php esc_html_e( "plugin which allows to custom sort all posts, pages, custom post types", 'taxonomy-terms-order' ) ?> </p>
    80                             <p><?php esc_html_e('Check our', 'taxonomy-terms-order') ?> <a target="_blank" href="https://wordpress.org/plugins/post-terms-order/">Post Terms Order</a> <?php esc_html_e('plugin which allows to custom sort categories and custom taxonomies terms per post basis', 'taxonomy-terms-order') ?> </p>
     79
     80                            <p><span style="color:#CC0000" class="dashicons dashicons-megaphone" alt="f488">&nbsp;</span> <?php esc_html_e('Check our', 'post-types-order') ?> <a href="https://wordpress.org/plugins/wp-hide-security-enhancer/" target="_blank"><b>WP Hide & Security Enhancer</b></a> <?php esc_html_e('an extra layer of security for your site. It provides an easy way to protect your website’s code from being exploited by hiding your WordPress core files, themes, and plugins.', 'post-types-order') ?>.</p>
     81                            <p><span style="color:#CC0000" class="dashicons dashicons-megaphone" alt="f488">&nbsp;</span> <?php esc_html_e('Check our', 'post-types-order') ?> <a href="https://wordpress.org/plugins/software-license-lite/" target="_blank"><b>Software License Lite for WooCommerce</b></a> <?php esc_html_e('A centralized licensing solution for WooCommerce that manages product licenses, delivers software updates, supports ongoing maintenance, and helps protect your code.', 'post-types-order') ?>.</p>
     82                            <div class="clear"></div>
    8183                           
    8284                            <div class="clear"></div>
  • taxonomy-terms-order/trunk/include/class.tto.php

    r3465269 r3483569  
    2121                    add_action( 'wp_ajax_update-taxonomy-order',    array ( $this, 'saveAjaxOrder' ) );
    2222                   
     23                    add_filter( 'plugin_action_links_taxonomy-terms-order/taxonomy-terms-order.php',                  array ( $this,  'add_plugin_action_links') );
     24                    add_filter( 'network_admin_plugin_action_links_taxonomy-terms-order/taxonomy-terms-order.php' ,   array ( $this,  'add_plugin_action_links')  );
     25                   
    2326                    if ( is_admin() )
    2427                        TTO_functions::check_table_column();                   
     
    221224                    die();
    222225                }
     226               
     227               
     228               
     229            function add_plugin_action_links( $plugin_actions )
     230                {
     231                    $new_actions = array();
     232
     233                    $new_actions['to_settings'] = sprintf( __( '<a href="%s">Settings</a>', 'taxonomy-terms-order' ), esc_url( admin_url( 'options-general.php?page=to-options' ) ) );
     234
     235                    return array_merge( $new_actions, $plugin_actions );   
     236                }
    223237           
    224238        }
  • taxonomy-terms-order/trunk/readme.txt

    r3465269 r3483569  
    55Requires at least: 2.8
    66Tested up to: 6.9
    7 Stable tag: 1.9.4
     7Stable tag: 1.9.5
    88
    99Drag-and-drop ordering for Categories & any taxonomy (hierarchically) using a Drag and Drop Sortable JavaScript capability.
     
    7676
    7777== Change Log ==
     78
     79= 1.9.5 =
     80 - Add a Settings link for the plugin in the Plugins area to make it easier for users to access and get started.
     81 - Implement minor code improvements.
    7882
    7983= 1.9.4 =
  • taxonomy-terms-order/trunk/taxonomy-terms-order.php

    r3465269 r3483569  
    44* Plugin URI: http://www.nsp-code.com
    55* Description: Order Categories and all custom taxonomies terms (hierarchically) and child terms using a Drag and Drop Sortable javascript capability.
    6 * Version: 1.9.4
     6* Version: 1.9.5
    77* Author: Nsp-Code
    88* Author URI: https://www.nsp-code.com
     
    1616    define('TOURL',     plugins_url('', __FILE__));
    1717   
    18     define('TTO_VERSION',          '1.9.4');
     18    define('TTO_VERSION',          '1.9.5');
    1919   
    2020    include_once    (   TOPATH . '/include/class.tto.php'   );
Note: See TracChangeset for help on using the changeset viewer.