Changeset 3128226
- Timestamp:
- 07/30/2024 02:41:54 PM (19 months ago)
- Location:
- woo-epos-now-integration/trunk
- Files:
-
- 3 edited
-
admin/sew-admin.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
woo-epos-now-integration.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woo-epos-now-integration/trunk/admin/sew-admin.php
r3039645 r3128226 12 12 if ( $hook == 'post-new.php' || $hook == 'post.php' || $hook == 'edit.php') { 13 13 global $post; 14 if ( 'product' === $post->post_type ) {14 if ( isset($post) && is_object($post) && 'product' === $post->post_type ) { 15 15 wp_enqueue_style( 'product_admin_style', plugins_url('css/product-admin-style.css', __DIR__)); 16 16 } -
woo-epos-now-integration/trunk/readme.txt
r3118440 r3128226 3 3 Tags: woocommerce,eposnow,integration,epos,stock sync,order sync, product sync, inventory sync 4 4 Requires at least: 4.9.8 5 Tested up to: 6. 5.55 Tested up to: 6.6.1 6 6 Requires PHP: 5.5 7 7 Stable tag: trunk … … 85 85 86 86 == Changelog == 87 = 4.4.3 = 88 * Bugfix post type in admin styles loading 87 89 88 90 = 4.4.2 = -
woo-epos-now-integration/trunk/woo-epos-now-integration.php
r3118440 r3128226 4 4 Plugin URI: https://slynk.io/epos-now-woocommerce-integration/ 5 5 Description: Integration for syncing orders, products, stock and customers between WooCommerce and Epos Now 6 Version: 4.4. 26 Version: 4.4.3 7 7 Author: Slynk Digital 8 8 Author URI: https://www.slynk.io … … 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html 11 11 WC requires at least: 4.5.0 12 WC tested up to: 9.1. 212 WC tested up to: 9.1.4 13 13 */ 14 14 15 15 //CONSTANTS 16 define('SLYNK_EW_PLUGIN_VERSION','4.4. 2');16 define('SLYNK_EW_PLUGIN_VERSION','4.4.3'); 17 17 define('SLYNK_EW_PLUGIN_NAME','Integration for Epos Now and WooCommerce'); 18 18 define('SLYNK_EW_PLUGIN_PATH',basename(dirname(__FILE__)).'/'.basename(__FILE__));
Note: See TracChangeset
for help on using the changeset viewer.