Changeset 2705454
- Timestamp:
- 04/06/2022 04:04:55 AM (4 years ago)
- Location:
- codistoconnect/trunk
- Files:
-
- 4 edited
-
admin.js (modified) (1 diff)
-
changelog.txt (modified) (1 diff)
-
connect.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
codistoconnect/trunk/admin.js
r2459353 r2705454 118 118 } 119 119 120 function setFrameLeft() { 121 122 const adminMenu = document.querySelector("#adminmenuwrap"); 123 if(adminMenu) { 124 const adminMenuWidth = parseInt(adminMenu.clientWidth, 10); 125 if(adminMenuWidth) { 126 document.querySelector(".codisto #wpbody").style.setProperty("left", adminMenuWidth + "px", "important"); 127 } 128 } 129 130 } 131 132 setFrameLeft(); 133 134 document.getElementById("collapse-menu").addEventListener("click", function(e) { 135 setFrameLeft(); 136 }); 137 120 138 }); 121 139 -
codistoconnect/trunk/changelog.txt
r2669579 r2705454 1 1 *** WooCommerce Google, Amazon & eBay Integration - Channel Cloud by Codisto *** 2 3 2022-04-06 - version 1.3.65 4 * Fix - set frame size based on admin menu width 5 * Fix - remove deprecated function call 6 * Update - WooCommerce tested up to 6.3.1 7 * Update - WordPress tested up to 5.9.3 2 8 3 9 2022-01-31 - version 1.3.64 -
codistoconnect/trunk/connect.php
r2669579 r2705454 6 6 * Author: Codisto 7 7 * Author URI: https://codisto.com/ 8 * Version: 1.3.6 48 * Version: 1.3.65 9 9 * Text Domain: codisto-linq 10 10 * Woo: 3545890:ba4772797f6c2c68c5b8e0b1c7f0c4e2 11 11 * WC requires at least: 2.0.0 12 * WC tested up to: 6. 1.112 * WC tested up to: 6.3.1 13 13 * License: GPLv2 14 14 * License URI: http://www.gnu.org/licenses/gpl-2.0.html 15 15 * 16 16 * @package Codisto LINQ by Codisto 17 * @version 1.3.6 417 * @version 1.3.65 18 18 */ 19 19 … … 22 22 } 23 23 24 define( 'CODISTOCONNECT_VERSION', '1.3.6 4' );24 define( 'CODISTOCONNECT_VERSION', '1.3.65' ); 25 25 define( 'CODISTOCONNECT_RESELLERKEY', '' ); 26 26 … … 417 417 } 418 418 419 $product_ids = array_filter( $product_ids, create_function( '$v', 'return is_numeric($v);' ));419 $product_ids = array_filter( $product_ids, "is_numeric"); 420 420 421 421 if ( ! isset( $_GET['count'] ) ) { -
codistoconnect/trunk/readme.txt
r2669579 r2705454 3 3 Tags: ecommerce, e-commerce, woocommerce, ebay, amazon, paypal, integration, multi-channel, listings, store, sales, sell, shop 4 4 Requires at least: 4.0 5 Tested up to: 5.9 6 Stable tag: 1.3.6 45 Tested up to: 5.9.3 6 Stable tag: 1.3.65 7 7 Requires PHP: 5.6 8 8 License: GPLv2 … … 243 243 == Changelog == 244 244 245 = 1.3.65 - 06/04/2022 = 246 * Fix - set frame size based on admin menu width 247 * Fix - remove deprecated function call 248 * Update - WooCommerce tested up to 6.3.1 249 * Update - WordPress tested up to 5.9.3 250 245 251 = 1.3.64 - 31/01/2022 = 246 252 * Fix - filter template file names
Note: See TracChangeset
for help on using the changeset viewer.