Changeset 2903444
- Timestamp:
- 04/24/2023 05:07:59 PM (3 years ago)
- Location:
- setary
- Files:
-
- 6 added
- 8 edited
- 1 copied
-
tags/1.5.0 (copied) (copied from setary/trunk)
-
tags/1.5.0/README.md (modified) (3 diffs)
-
tags/1.5.0/inc/bootstrap.php (modified) (1 diff)
-
tags/1.5.0/inc/class-batch.php (added)
-
tags/1.5.0/inc/class-mu.php (added)
-
tags/1.5.0/inc/class-welcome.php (modified) (2 diffs)
-
tags/1.5.0/mu-setary-helper.php (added)
-
tags/1.5.0/setary.php (modified) (3 diffs)
-
trunk/README.md (modified) (3 diffs)
-
trunk/inc/bootstrap.php (modified) (1 diff)
-
trunk/inc/class-batch.php (added)
-
trunk/inc/class-mu.php (added)
-
trunk/inc/class-welcome.php (modified) (2 diffs)
-
trunk/mu-setary-helper.php (added)
-
trunk/setary.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
setary/tags/1.5.0/README.md
r2874509 r2903444 3 3 Tags: bulk edit, products, woocommerce, spreadsheet, bulk editor 4 4 Requires at least: 5.7 5 Tested up to: 6. 1.15 Tested up to: 6.2 6 6 Requires PHP: 7.1 7 Stable tag: 1. 4.07 Stable tag: 1.5.0 8 8 License: MIT 9 9 License URI: https://opensource.org/licenses/MIT … … 29 29 = Push to Multiple Stores at Once = 30 30 If you have the same products in multiple WooCommerce stores, Setary's bulk product editor makes it possible to update them all at the same time. Make your changes in our bulk product editor on one store, then push those changes to multiple stores by matching products based on their Name, SKU, Slug, or ID. 31 32 = AI Assistant = 33 Setary's AI assistant can help you improve your WooCommerce product descriptions by suggesting optimised versions of your existing descriptions. 31 34 32 35 = Low-Cost Bulk Editing for WooCommerce = … … 60 63 Yes! You can edit both products and variations. 61 64 65 = Do you have a free trial? = 66 Yes! You can [sign up for a free 7-day trial](https://setary.com/pricing/?utm_source=setary&utm_medium=plugin-readme) to try out Setary. 67 68 = Can I cancel my subscription at any time? = 69 Yes. You can cancel your subscription at any time. 70 71 = Can I upgrade or downgrade my subscription at any time? = 72 Yes. You can upgrade or downgrade your subscription at any time. 73 74 = Can I use Setary with multiple WooCommerce stores? = 75 Yes. You can add multiple WooCommerce stores to Setary and manage them all in one place. 76 62 77 == Changelog == 78 79 = v1.5.0 (2023-04-24) = 80 * [new] Batch updates endpoint - improves performance dramatically 81 * [new] Disable 3rd-party plugins on Setary REST endpoints 82 * [update] Disable admin notices on the welcome page 63 83 64 84 = v1.4.0 (2023-03-03) = -
setary/tags/1.5.0/inc/bootstrap.php
r2860687 r2903444 39 39 'meta' => __NAMESPACE__ . '\\Meta', 40 40 'save_by_field'=> __NAMESPACE__ . '\\SaveByField', 41 'batch' => __NAMESPACE__ . '\\Batch', 41 42 // https://setary.wp.loc/wp-json/wc/setary/info/. 42 43 'info' => __NAMESPACE__ . '\\Info', -
setary/tags/1.5.0/inc/class-welcome.php
r2823229 r2903444 32 32 add_action( 'admin_menu', [ $this, 'add_screen' ] ); 33 33 add_action( 'admin_head', [ $this, 'remove_menus' ] ); 34 add_action( 'admin_print_scripts', [ $this, 'disable_admin_notices' ] ); 34 35 } 35 36 … … 88 89 remove_submenu_page( 'index.php', $this->slug ); 89 90 } 91 92 /** 93 * Disable admin notices. 94 */ 95 public function disable_admin_notices() { 96 global $wp_filter; 97 98 if ( isset( $_GET['page'] ) && $this->slug === $_GET['page'] ) { 99 if ( isset( $wp_filter['user_admin_notices'] ) ) { 100 unset( $wp_filter['user_admin_notices'] ); 101 } 102 if ( isset( $wp_filter['admin_notices'] ) ) { 103 unset( $wp_filter['admin_notices'] ); 104 } 105 if ( isset( $wp_filter['all_admin_notices'] ) ) { 106 unset( $wp_filter['all_admin_notices'] ); 107 } 108 } 109 } 90 110 } 91 111 -
setary/tags/1.5.0/setary.php
r2874509 r2903444 11 11 * Author URI: https://setary.com/ 12 12 * 13 * Version: 1. 4.013 * Version: 1.5.0 14 14 * WC requires at least: 6.0.0 15 * WC tested up to: 7. 4.115 * WC tested up to: 7.6.0 16 16 * 17 17 * @package Setary … … 23 23 define( 'SETARY_PATH', \plugin_dir_path( __FILE__ ) ); 24 24 define( 'SETARY_URL', \plugins_url( '/', __FILE__ ) ); 25 define( 'SETARY_VERSION', '1. 4.0' );25 define( 'SETARY_VERSION', '1.5.0' ); 26 26 define( 'SETARY_SITE_URL', 'https://setary.com/' ); 27 27 define( 'SETARY_APP_URL', 'https://setary.com/app/' ); … … 49 49 include_once __DIR__ . '/inc/class-save-by-field.php'; 50 50 include_once __DIR__ . '/inc/class-info.php'; 51 include_once __DIR__ . '/inc/class-batch.php'; 52 include_once __DIR__ . '/inc/class-mu.php'; 51 53 include_once __DIR__ . '/inc/bootstrap.php'; 52 54 } -
setary/trunk/README.md
r2874509 r2903444 3 3 Tags: bulk edit, products, woocommerce, spreadsheet, bulk editor 4 4 Requires at least: 5.7 5 Tested up to: 6. 1.15 Tested up to: 6.2 6 6 Requires PHP: 7.1 7 Stable tag: 1. 4.07 Stable tag: 1.5.0 8 8 License: MIT 9 9 License URI: https://opensource.org/licenses/MIT … … 29 29 = Push to Multiple Stores at Once = 30 30 If you have the same products in multiple WooCommerce stores, Setary's bulk product editor makes it possible to update them all at the same time. Make your changes in our bulk product editor on one store, then push those changes to multiple stores by matching products based on their Name, SKU, Slug, or ID. 31 32 = AI Assistant = 33 Setary's AI assistant can help you improve your WooCommerce product descriptions by suggesting optimised versions of your existing descriptions. 31 34 32 35 = Low-Cost Bulk Editing for WooCommerce = … … 60 63 Yes! You can edit both products and variations. 61 64 65 = Do you have a free trial? = 66 Yes! You can [sign up for a free 7-day trial](https://setary.com/pricing/?utm_source=setary&utm_medium=plugin-readme) to try out Setary. 67 68 = Can I cancel my subscription at any time? = 69 Yes. You can cancel your subscription at any time. 70 71 = Can I upgrade or downgrade my subscription at any time? = 72 Yes. You can upgrade or downgrade your subscription at any time. 73 74 = Can I use Setary with multiple WooCommerce stores? = 75 Yes. You can add multiple WooCommerce stores to Setary and manage them all in one place. 76 62 77 == Changelog == 78 79 = v1.5.0 (2023-04-24) = 80 * [new] Batch updates endpoint - improves performance dramatically 81 * [new] Disable 3rd-party plugins on Setary REST endpoints 82 * [update] Disable admin notices on the welcome page 63 83 64 84 = v1.4.0 (2023-03-03) = -
setary/trunk/inc/bootstrap.php
r2860687 r2903444 39 39 'meta' => __NAMESPACE__ . '\\Meta', 40 40 'save_by_field'=> __NAMESPACE__ . '\\SaveByField', 41 'batch' => __NAMESPACE__ . '\\Batch', 41 42 // https://setary.wp.loc/wp-json/wc/setary/info/. 42 43 'info' => __NAMESPACE__ . '\\Info', -
setary/trunk/inc/class-welcome.php
r2823229 r2903444 32 32 add_action( 'admin_menu', [ $this, 'add_screen' ] ); 33 33 add_action( 'admin_head', [ $this, 'remove_menus' ] ); 34 add_action( 'admin_print_scripts', [ $this, 'disable_admin_notices' ] ); 34 35 } 35 36 … … 88 89 remove_submenu_page( 'index.php', $this->slug ); 89 90 } 91 92 /** 93 * Disable admin notices. 94 */ 95 public function disable_admin_notices() { 96 global $wp_filter; 97 98 if ( isset( $_GET['page'] ) && $this->slug === $_GET['page'] ) { 99 if ( isset( $wp_filter['user_admin_notices'] ) ) { 100 unset( $wp_filter['user_admin_notices'] ); 101 } 102 if ( isset( $wp_filter['admin_notices'] ) ) { 103 unset( $wp_filter['admin_notices'] ); 104 } 105 if ( isset( $wp_filter['all_admin_notices'] ) ) { 106 unset( $wp_filter['all_admin_notices'] ); 107 } 108 } 109 } 90 110 } 91 111 -
setary/trunk/setary.php
r2874509 r2903444 11 11 * Author URI: https://setary.com/ 12 12 * 13 * Version: 1. 4.013 * Version: 1.5.0 14 14 * WC requires at least: 6.0.0 15 * WC tested up to: 7. 4.115 * WC tested up to: 7.6.0 16 16 * 17 17 * @package Setary … … 23 23 define( 'SETARY_PATH', \plugin_dir_path( __FILE__ ) ); 24 24 define( 'SETARY_URL', \plugins_url( '/', __FILE__ ) ); 25 define( 'SETARY_VERSION', '1. 4.0' );25 define( 'SETARY_VERSION', '1.5.0' ); 26 26 define( 'SETARY_SITE_URL', 'https://setary.com/' ); 27 27 define( 'SETARY_APP_URL', 'https://setary.com/app/' ); … … 49 49 include_once __DIR__ . '/inc/class-save-by-field.php'; 50 50 include_once __DIR__ . '/inc/class-info.php'; 51 include_once __DIR__ . '/inc/class-batch.php'; 52 include_once __DIR__ . '/inc/class-mu.php'; 51 53 include_once __DIR__ . '/inc/bootstrap.php'; 52 54 }
Note: See TracChangeset
for help on using the changeset viewer.