Changeset 3483569
- Timestamp:
- 03/16/2026 08:12:52 AM (12 days ago)
- Location:
- taxonomy-terms-order
- Files:
-
- 25 added
- 4 edited
-
tags/1.9.5 (added)
-
tags/1.9.5/composer.json (added)
-
tags/1.9.5/css (added)
-
tags/1.9.5/css/to.css (added)
-
tags/1.9.5/images (added)
-
tags/1.9.5/images/gray-grad.png (added)
-
tags/1.9.5/images/logo.png (added)
-
tags/1.9.5/images/menu-icon.png (added)
-
tags/1.9.5/images/wpspin_light.gif (added)
-
tags/1.9.5/include (added)
-
tags/1.9.5/include/class.addons.php (added)
-
tags/1.9.5/include/class.functions.php (added)
-
tags/1.9.5/include/class.interface.php (added)
-
tags/1.9.5/include/class.options.php (added)
-
tags/1.9.5/include/class.terms_walker.php (added)
-
tags/1.9.5/include/class.tto.php (added)
-
tags/1.9.5/js (added)
-
tags/1.9.5/js/to-javascript.js (added)
-
tags/1.9.5/languages (added)
-
tags/1.9.5/languages/taxonomy-terms-order.mo (added)
-
tags/1.9.5/languages/taxonomy-terms-order.po (added)
-
tags/1.9.5/readme.txt (added)
-
tags/1.9.5/screenshot-1.png (added)
-
tags/1.9.5/screenshot-2.png (added)
-
tags/1.9.5/taxonomy-terms-order.php (added)
-
trunk/include/class.functions.php (modified) (1 diff)
-
trunk/include/class.tto.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/taxonomy-terms-order.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
taxonomy-terms-order/trunk/include/class.functions.php
r3411067 r3483569 75 75 ?> 76 76 <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> 79 78 <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"> </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"> </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> 81 83 82 84 <div class="clear"></div> -
taxonomy-terms-order/trunk/include/class.tto.php
r3465269 r3483569 21 21 add_action( 'wp_ajax_update-taxonomy-order', array ( $this, 'saveAjaxOrder' ) ); 22 22 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 23 26 if ( is_admin() ) 24 27 TTO_functions::check_table_column(); … … 221 224 die(); 222 225 } 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 } 223 237 224 238 } -
taxonomy-terms-order/trunk/readme.txt
r3465269 r3483569 5 5 Requires at least: 2.8 6 6 Tested up to: 6.9 7 Stable tag: 1.9. 47 Stable tag: 1.9.5 8 8 9 9 Drag-and-drop ordering for Categories & any taxonomy (hierarchically) using a Drag and Drop Sortable JavaScript capability. … … 76 76 77 77 == 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. 78 82 79 83 = 1.9.4 = -
taxonomy-terms-order/trunk/taxonomy-terms-order.php
r3465269 r3483569 4 4 * Plugin URI: http://www.nsp-code.com 5 5 * Description: Order Categories and all custom taxonomies terms (hierarchically) and child terms using a Drag and Drop Sortable javascript capability. 6 * Version: 1.9. 46 * Version: 1.9.5 7 7 * Author: Nsp-Code 8 8 * Author URI: https://www.nsp-code.com … … 16 16 define('TOURL', plugins_url('', __FILE__)); 17 17 18 define('TTO_VERSION', '1.9. 4');18 define('TTO_VERSION', '1.9.5'); 19 19 20 20 include_once ( TOPATH . '/include/class.tto.php' );
Note: See TracChangeset
for help on using the changeset viewer.