Plugin Directory

Changeset 3128226


Ignore:
Timestamp:
07/30/2024 02:41:54 PM (19 months ago)
Author:
slynkdigital
Message:

Bugfix post type in admin styles loading

Location:
woo-epos-now-integration/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • woo-epos-now-integration/trunk/admin/sew-admin.php

    r3039645 r3128226  
    1212    if ( $hook == 'post-new.php' || $hook == 'post.php' || $hook == 'edit.php') {
    1313        global $post;
    14         if ( 'product' === $post->post_type ) {
     14        if ( isset($post) && is_object($post) && 'product' === $post->post_type ) {
    1515            wp_enqueue_style( 'product_admin_style', plugins_url('css/product-admin-style.css', __DIR__));
    1616        }
  • woo-epos-now-integration/trunk/readme.txt

    r3118440 r3128226  
    33Tags: woocommerce,eposnow,integration,epos,stock sync,order sync, product sync, inventory sync
    44Requires at least: 4.9.8
    5 Tested up to: 6.5.5
     5Tested up to: 6.6.1
    66Requires PHP: 5.5
    77Stable tag: trunk
     
    8585
    8686== Changelog ==
     87= 4.4.3 =
     88* Bugfix post type in admin styles loading
    8789
    8890= 4.4.2 =
  • woo-epos-now-integration/trunk/woo-epos-now-integration.php

    r3118440 r3128226  
    44Plugin URI:             https://slynk.io/epos-now-woocommerce-integration/
    55Description:            Integration for syncing orders, products, stock and customers between WooCommerce and Epos Now
    6 Version:                4.4.2
     6Version:                4.4.3
    77Author:                 Slynk Digital
    88Author URI:             https://www.slynk.io
     
    1010License URI:            https://www.gnu.org/licenses/gpl-2.0.html
    1111WC requires at least:   4.5.0
    12 WC tested up to:        9.1.2
     12WC tested up to:        9.1.4
    1313*/
    1414
    1515//CONSTANTS
    16 define('SLYNK_EW_PLUGIN_VERSION','4.4.2');
     16define('SLYNK_EW_PLUGIN_VERSION','4.4.3');
    1717define('SLYNK_EW_PLUGIN_NAME','Integration for Epos Now and WooCommerce');
    1818define('SLYNK_EW_PLUGIN_PATH',basename(dirname(__FILE__)).'/'.basename(__FILE__));
Note: See TracChangeset for help on using the changeset viewer.