Common issues and solutions for PureClarity WooCommerce integration including installation, feeds, zones, and performance problems
Before troubleshooting, ensure you have the latest version of the PureClarity WooCommerce plugin installed and that your WordPress/WooCommerce are up to date.
Issue: Feeds not running automaticallyCheck Cron Configuration:
Copy
// Test WordPress cron in wp-config.phpdefine('WP_DEBUG', true);define('WP_DEBUG_LOG', true);// Check if cron is disabledif (defined('DISABLE_WP_CRON') && DISABLE_WP_CRON) { // Cron is disabled - contact hosting provider}
Common Solutions:
Verify WP-Cron is enabled on your server
Check hosting provider cron configuration
Review scheduled task logs
Test manual feed execution
Issue: Feed timeout errorsServer Configuration:
Increase PHP max_execution_time (300+ seconds)
Raise PHP memory_limit (256MB+ recommended)
Optimize database queries
Contact hosting for server resources
Issue: Partial feed processing
Reduce batch size in settings
Check product data completeness
Verify image accessibility
Review error logs for specific failures
Enable debug logging in plugin settings to get detailed information about feed processing and identify specific issues.