Description
Magelon Export is a WooCommerce plugin that allows store owners to export product data in compliance with Google Merchant specifications.
Features
- Export WooCommerce product data with custom field mapping
- Schedule automatic exports (hourly, daily, weekly)
- Endpoint for fetching the latest export
- Extendable via WordPress hooks and filters
Usage
- Go to Tools > Magelon Export in the admin panel.
- Map WooCommerce fields to Google Product Data fields.
- Set the export interval (hourly, daily, weekly).
- Access the exported file at
/wp-content/uploads/magelon-export/products.csv.
Example 1: Extending the Plugin
Developers can add custom fields using the magelon_export_custom_product_fields filter:
php
add_filter('magelon_export_custom_product_fields', function ($fields) {
$fields['_custom_field'] = 'Custom Meta Field';
return $fields;
});
Example 2: Making ACF available in mapping
“`php
add_filter(‘magelon_export_custom_product_fields’, function ($fields) {
// Ensure ACF is installed and active
if (!function_exists(‘acf_get_field_groups’)) {
return $fields;
}
// Get all ACF field groups
$acf_field_groups = acf_get_field_groups();
foreach ($acf_field_groups as $group) {
$fields_in_group = acf_get_fields($group['key']);
if ($fields_in_group) {
foreach ($fields_in_group as $acf_field) {
$fields[$acf_field['name']] = 'ACF: ' . $acf_field['label'];
}
}
}
return $fields;
});
`
Support
For issues, open a GitHub issue or contact support.
support@magelon.com
Installation
- Download the plugin and extract it into your WordPress plugins directory (
wp-content/plugins/magelon-export). - Activate the plugin from the WordPress admin panel under Plugins.
- Configure the export settings under Tools > Magelon Export.
Reviews
There are no reviews for this plugin.
Contributors & Developers
“Magelon Export” is open source software. The following people have contributed to this plugin.
ContributorsTranslate “Magelon Export” into your language.
Interested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.