WordPress Plugin
WordPress Troubleshooting
Common issues and solutions for the Synoveo WordPress plugin
Solutions to common problems with the Synoveo WordPress plugin.
Connection Issues
"Connection Failed" Error
Symptoms: Red "Disconnected" status, unable to sync
Solutions:
- Verify your Client ID and Secret are correct
- Check your domain matches the API key domain
- Ensure your server can reach
api.synoveo.com - Check for firewall blocking outbound HTTPS
// Test API connectivity
add_action('init', function() {
$response = wp_remote_get('https://api.synoveo.com/health');
var_dump(wp_remote_retrieve_response_code($response));
});"Invalid Credentials" Error
Symptoms: Credentials rejected on save
Solutions:
- Regenerate credentials in Synoveo dashboard
- Copy/paste carefully (no extra spaces)
- Ensure the API key hasn't been revoked
"Domain Mismatch" Error
Symptoms: Connection rejected due to domain
Solutions:
- Check the domain in your API key settings
- Must match your WordPress site URL exactly
- Include or exclude
www.consistently
Sync Issues
"Sync Failed" Error
Symptoms: Sync starts but fails to complete
Solutions:
- Check your plan has the required fields
- Verify location is verified in Google
- Check sync is enabled for the location
- Review error details in Synoveo → Logs
"No Data to Sync" Error
Symptoms: Sync completes but nothing changed
Solutions:
- Check data sources are enabled
- Verify plugin integrations are detected
- Ensure content exists to sync (products, posts, etc.)
"Rate Limited" Error
Symptoms: Too many sync attempts blocked
Solutions:
- Wait for rate limit to reset (usually 1 hour)
- Reduce sync frequency
- Consider upgrading your plan
Auto-Post Issues
"Posts Not Publishing to Google"
Solutions:
- Verify you have Pro plan or higher
- Check auto-post is enabled
- Ensure the post type is selected for auto-post
- Check post has a featured image
- Review Synoveo → Post History for errors
"Image Not Included in Post"
Solutions:
- Set a featured image on the WordPress post
- Image must be JPEG or PNG
- Minimum size: 400x300 pixels
- Check image URL is publicly accessible
Reviews Issues
"Reviews Not Displaying"
Solutions:
- Check shortcode syntax:
[synoveo_reviews] - Verify API credentials are connected
- Ensure location has reviews in Google
- Clear WordPress cache
"Stale Reviews"
Solutions:
- Reviews cache for 12 hours
- Clear page cache to see updates
- Wait for cache refresh
Plugin Conflicts
Common Conflicts
| Plugin | Issue | Solution |
|---|---|---|
| Caching plugins | Stale data | Exclude Synoveo AJAX from cache |
| Security plugins | Blocked API calls | Whitelist api.synoveo.com |
| SEO plugins | Duplicate data | Set source priority in Synoveo |
Debug Mode
Enable debug mode to troubleshoot:
// In wp-config.php
define('SYNOVEO_DEBUG', true);
define('WP_DEBUG_LOG', true);Check /wp-content/debug.log for detailed errors.
Server Requirements
PHP Extensions
Required extensions:
curljsonmbstring
Check with:
<?php phpinfo(); ?>Memory Limit
Minimum 128MB recommended:
// In wp-config.php
define('WP_MEMORY_LIMIT', '256M');Getting Help
If you're still stuck:
- Enable debug mode and collect logs
- Note your WordPress, PHP, and plugin versions
- Contact support at support@synoveo.com