Syncing NetSuite Images to WooCommerce via Celigo Integrator

What It Is: This article explains how to sync product images from NetSuite to WooCommerce using Celigo Integrator. Since WooCommerce doesn’t accept NetSuite-hosted image URLs directly, this method uses Celigo’s file lookup and blobkey extraction to upload images via WooCommerce’s HTTP Import API using multipart/form-data. Need to Use: To ensure product images stored in NetSuite’s… Continue reading Syncing NetSuite Images to WooCommerce via Celigo Integrator

Stop runinng unwanted actions on WooCommerce

Add the following code to the functions.php to stop the action scheduler on the website. function yourprefix_disable_action_scheduler() { if ( class_exists( ‘ActionScheduler’ ) ) { remove_action( ‘action_scheduler_run_queue’, array( ActionScheduler::runner(), ‘run’ ) ); } } add_action( ‘init’, ‘yourprefix_disable_action_scheduler’, 10 ); Now this will disable the running status of all events on the woocoommerce. This may be… Continue reading Stop runinng unwanted actions on WooCommerce