Plugin Directory

Changeset 2705454


Ignore:
Timestamp:
04/06/2022 04:04:55 AM (4 years ago)
Author:
codisto
Message:

http://plugins.svn.wordpress.org/codistoconnect/tags/1.3.65

Location:
codistoconnect/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • codistoconnect/trunk/admin.js

    r2459353 r2705454  
    118118        }
    119119
     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
    120138    });
    121139
  • codistoconnect/trunk/changelog.txt

    r2669579 r2705454  
    11*** WooCommerce Google, Amazon & eBay Integration - Channel Cloud by Codisto ***
     2
     32022-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
    28
    392022-01-31 - version 1.3.64
  • codistoconnect/trunk/connect.php

    r2669579 r2705454  
    66 * Author: Codisto
    77 * Author URI: https://codisto.com/
    8  * Version: 1.3.64
     8 * Version: 1.3.65
    99 * Text Domain: codisto-linq
    1010 * Woo: 3545890:ba4772797f6c2c68c5b8e0b1c7f0c4e2
    1111 * WC requires at least: 2.0.0
    12  * WC tested up to: 6.1.1
     12 * WC tested up to: 6.3.1
    1313 * License: GPLv2
    1414 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1515 *
    1616 * @package Codisto LINQ by Codisto
    17  * @version 1.3.64
     17 * @version 1.3.65
    1818 */
    1919
     
    2222}
    2323
    24 define( 'CODISTOCONNECT_VERSION', '1.3.64' );
     24define( 'CODISTOCONNECT_VERSION', '1.3.65' );
    2525define( 'CODISTOCONNECT_RESELLERKEY', '' );
    2626
     
    417417                    }
    418418
    419                     $product_ids = array_filter( $product_ids, create_function( '$v', 'return is_numeric($v);' ) );
     419                    $product_ids = array_filter( $product_ids, "is_numeric");
    420420
    421421                    if ( ! isset( $_GET['count'] ) ) {
  • codistoconnect/trunk/readme.txt

    r2669579 r2705454  
    33Tags: ecommerce, e-commerce, woocommerce, ebay, amazon, paypal, integration, multi-channel, listings, store, sales, sell, shop
    44Requires at least: 4.0
    5 Tested up to: 5.9
    6 Stable tag: 1.3.64
     5Tested up to: 5.9.3
     6Stable tag: 1.3.65
    77Requires PHP: 5.6
    88License: GPLv2
     
    243243== Changelog ==
    244244
     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
    245251= 1.3.64 - 31/01/2022 =
    246252* Fix - filter template file names
Note: See TracChangeset for help on using the changeset viewer.