Changeset 3126414
- Timestamp:
- 07/27/2024 06:44:33 AM (20 months ago)
- Location:
- order-sync-with-google-sheets-for-woocommerce
- Files:
-
- 8 edited
- 1 copied
-
tags/1.9.2 (copied) (copied from order-sync-with-google-sheets-for-woocommerce/trunk)
-
tags/1.9.2/includes/classes/class-popup.php (modified) (1 diff)
-
tags/1.9.2/order-sync-with-google-sheets-for-woocommerce.php (modified) (2 diffs)
-
tags/1.9.2/public/css/global.css (modified) (3 diffs)
-
tags/1.9.2/readme.txt (modified) (2 diffs)
-
trunk/includes/classes/class-popup.php (modified) (1 diff)
-
trunk/order-sync-with-google-sheets-for-woocommerce.php (modified) (2 diffs)
-
trunk/public/css/global.css (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
order-sync-with-google-sheets-for-woocommerce/tags/1.9.2/includes/classes/class-popup.php
r3009173 r3126414 150 150 <div class="osgsw-days-dropdown"> 151 151 <div class="selected-option" data-days="7"><?php esc_html_e( '7 Days', 'order-sync-with-google-sheet-for-woocommerce' ); ?></div> 152 <ul class="o ptions">152 <ul class="osgsw_options"> 153 153 <li data-value="7"><?php esc_html_e( '7 Days', 'order-sync-with-google-sheet-for-woocommerce' ); ?></li> 154 154 <li data-value="14"><?php esc_html_e( '14 Days', 'order-sync-with-google-sheet-for-woocommerce' ); ?></li> -
order-sync-with-google-sheets-for-woocommerce/tags/1.9.2/order-sync-with-google-sheets-for-woocommerce.php
r3119898 r3126414 4 4 * Plugin URI: https://wcordersync.com/ 5 5 * Description: Sync WooCommerce orders with Google Sheets. Perform WooCommerce order sync, e-commerce order management and sales order management from Google Sheets. 6 * Version: 1.9. 16 * Version: 1.9.2 7 7 * Author: WC Order Sync 8 8 * Author URI: https://wcordersync.com/ … … 21 21 */ 22 22 define( 'OSGSW_FILE', __FILE__ ); 23 define( 'OSGSW_VERSION', '1.9. 1' );23 define( 'OSGSW_VERSION', '1.9.2' ); 24 24 /** 25 25 * Loading base file -
order-sync-with-google-sheets-for-woocommerce/tags/1.9.2/public/css/global.css
r3058177 r3126414 444 444 } 445 445 446 .o ptions {446 .osgsw_options { 447 447 display: none; 448 448 list-style: none; … … 456 456 } 457 457 458 .o ptions li {458 .osgsw_options li { 459 459 padding: 9px 20px 9px 15px; 460 460 cursor: pointer; … … 465 465 } 466 466 467 .o ptions li:nth-child(3) {467 .osgsw_options li:nth-child(3) { 468 468 color: #9ca3af !important; 469 469 border: none !important; 470 470 } 471 471 472 .o ptions li:hover,473 .o ptions li:focus {472 .osgsw_options li:hover, 473 .osgsw_options li:focus { 474 474 border-bottom: 1px solid #e2e8f0; 475 475 background-color: #eff6ff; 476 476 } 477 477 478 .show-options .o ptions {478 .show-options .osgsw_options { 479 479 display: block; 480 480 } -
order-sync-with-google-sheets-for-woocommerce/tags/1.9.2/readme.txt
r3119898 r3126414 3 3 Tags: sync order, order management, inventory management, bulk edit, woocommerce orders 4 4 Requires at least: 5.4 5 Tested up to: 6. 55 Tested up to: 6.6 6 6 Requires PHP: 5.6 7 Stable tag: 1.9. 17 Stable tag: 1.9.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 127 127 == Changelog == 128 128 129 = 1.9.2 – 27 Jul 2024 = 130 * **Improvement**: Enhanced compatibility to support WordPress 6.6 131 * **Fix:** Fixed an issue that caused the disappearance of the stock manager for variable products on WooCommerce when order sync plugin is activated. 132 129 133 = 1.9.1 – 17 Jul 2024 = 130 134 * **Fix:** Fixed the issues in the setup process that prevented users from configuring the plugin -
order-sync-with-google-sheets-for-woocommerce/trunk/includes/classes/class-popup.php
r3009173 r3126414 150 150 <div class="osgsw-days-dropdown"> 151 151 <div class="selected-option" data-days="7"><?php esc_html_e( '7 Days', 'order-sync-with-google-sheet-for-woocommerce' ); ?></div> 152 <ul class="o ptions">152 <ul class="osgsw_options"> 153 153 <li data-value="7"><?php esc_html_e( '7 Days', 'order-sync-with-google-sheet-for-woocommerce' ); ?></li> 154 154 <li data-value="14"><?php esc_html_e( '14 Days', 'order-sync-with-google-sheet-for-woocommerce' ); ?></li> -
order-sync-with-google-sheets-for-woocommerce/trunk/order-sync-with-google-sheets-for-woocommerce.php
r3119898 r3126414 4 4 * Plugin URI: https://wcordersync.com/ 5 5 * Description: Sync WooCommerce orders with Google Sheets. Perform WooCommerce order sync, e-commerce order management and sales order management from Google Sheets. 6 * Version: 1.9. 16 * Version: 1.9.2 7 7 * Author: WC Order Sync 8 8 * Author URI: https://wcordersync.com/ … … 21 21 */ 22 22 define( 'OSGSW_FILE', __FILE__ ); 23 define( 'OSGSW_VERSION', '1.9. 1' );23 define( 'OSGSW_VERSION', '1.9.2' ); 24 24 /** 25 25 * Loading base file -
order-sync-with-google-sheets-for-woocommerce/trunk/public/css/global.css
r3058177 r3126414 444 444 } 445 445 446 .o ptions {446 .osgsw_options { 447 447 display: none; 448 448 list-style: none; … … 456 456 } 457 457 458 .o ptions li {458 .osgsw_options li { 459 459 padding: 9px 20px 9px 15px; 460 460 cursor: pointer; … … 465 465 } 466 466 467 .o ptions li:nth-child(3) {467 .osgsw_options li:nth-child(3) { 468 468 color: #9ca3af !important; 469 469 border: none !important; 470 470 } 471 471 472 .o ptions li:hover,473 .o ptions li:focus {472 .osgsw_options li:hover, 473 .osgsw_options li:focus { 474 474 border-bottom: 1px solid #e2e8f0; 475 475 background-color: #eff6ff; 476 476 } 477 477 478 .show-options .o ptions {478 .show-options .osgsw_options { 479 479 display: block; 480 480 } -
order-sync-with-google-sheets-for-woocommerce/trunk/readme.txt
r3119898 r3126414 3 3 Tags: sync order, order management, inventory management, bulk edit, woocommerce orders 4 4 Requires at least: 5.4 5 Tested up to: 6. 55 Tested up to: 6.6 6 6 Requires PHP: 5.6 7 Stable tag: 1.9. 17 Stable tag: 1.9.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 127 127 == Changelog == 128 128 129 = 1.9.2 – 27 Jul 2024 = 130 * **Improvement**: Enhanced compatibility to support WordPress 6.6 131 * **Fix:** Fixed an issue that caused the disappearance of the stock manager for variable products on WooCommerce when order sync plugin is activated. 132 129 133 = 1.9.1 – 17 Jul 2024 = 130 134 * **Fix:** Fixed the issues in the setup process that prevented users from configuring the plugin
Note: See TracChangeset
for help on using the changeset viewer.