{"id":220598,"date":"2025-03-01T05:14:34","date_gmt":"2025-03-01T05:14:34","guid":{"rendered":"https:\/\/fr-ca.wordpress.org\/plugins\/coupon-exporter-for-woocommerce\/"},"modified":"2025-03-17T13:52:29","modified_gmt":"2025-03-17T13:52:29","slug":"coupon-exporter-for-woocommerce","status":"publish","type":"plugin","link":"https:\/\/test.wordpress.org\/plugins\/coupon-exporter-for-woocommerce\/","author":20788556,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_crdt_document":"","version":"1.3.2","stable_tag":"1.3.2","tested":"6.7.5","requires":"5.0","requires_php":"7.4","requires_plugins":null,"header_name":"RWC Coupon Exporter for WooCommerce","header_author":"RELIEF Creation","header_description":"Export WooCommerce coupons to CSV file","assets_banners_color":"6c33ff","last_updated":"2025-03-17 13:52:29","external_support_url":"","external_repository_url":"","donate_link":"","header_plugin_uri":"https:\/\/github.com\/Reliefcreation\/WordPress-plugin-rwc-coupon-exporter","header_author_uri":"https:\/\/reliefcreation.com\/","rating":5,"author_block_rating":0,"active_installs":50,"downloads":834,"num_ratings":1,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","installation","faq","changelog"],"tags":{"1.3.1":{"tag":"1.3.1","author":"reliefcreation","date":"2025-03-01 05:14:58"},"1.3.2":{"tag":"1.3.2","author":"reliefcreation","date":"2025-03-17 13:52:29"}},"upgrade_notice":{"1.3.2":"<p>This version fixes an issue where HTML code could appear in exported CSV files and improves the overall export process.<\/p>"},"ratings":{"1":0,"2":0,"3":0,"4":0,"5":1},"assets_icons":{"icon-128x128.png":{"filename":"icon-128x128.png","revision":3248767,"resolution":"128x128","location":"assets","locale":"","width":128,"height":128},"icon-256x256.png":{"filename":"icon-256x256.png","revision":3248767,"resolution":"256x256","location":"assets","locale":"","width":256,"height":256},"icon.svg":{"filename":"icon.svg","revision":3248767,"resolution":false,"location":"assets","locale":false}},"assets_banners":{"banner-1544x500.png":{"filename":"banner-1544x500.png","revision":3248767,"resolution":"1544x500","location":"assets","locale":"","width":1544,"height":500},"banner-772x250.png":{"filename":"banner-772x250.png","revision":3248767,"resolution":"772x250","location":"assets","locale":"","width":772,"height":250}},"assets_blueprints":{},"all_blocks":[],"tagged_versions":["1.3.1","1.3.2"],"block_files":[],"assets_screenshots":{"screenshot-1.png":{"filename":"screenshot-1.png","revision":3248767,"resolution":"1","location":"assets","locale":"","width":1200,"height":800}},"screenshots":{"1":"Export coupons page in the WooCommerce menu"},"jetpack_post_was_ever_published":false},"plugin_section":[],"plugin_tags":[591,567,1859,286],"plugin_category":[45,59],"plugin_contributors":[238955],"plugin_business_model":[],"class_list":["post-220598","plugin","type-plugin","status-publish","hentry","plugin_tags-coupons","plugin_tags-csv","plugin_tags-export","plugin_tags-woocommerce","plugin_category-ecommerce","plugin_category-utilities-and-tools","plugin_contributors-reliefcreation","plugin_committers-reliefcreation"],"banners":{"banner":"https:\/\/ps.w.org\/coupon-exporter-for-woocommerce\/assets\/banner-772x250.png?rev=3248767","banner_2x":"https:\/\/ps.w.org\/coupon-exporter-for-woocommerce\/assets\/banner-1544x500.png?rev=3248767","banner_rtl":false,"banner_2x_rtl":false},"icons":{"svg":"https:\/\/ps.w.org\/coupon-exporter-for-woocommerce\/assets\/icon.svg?rev=3248767","icon":"https:\/\/ps.w.org\/coupon-exporter-for-woocommerce\/assets\/icon.svg?rev=3248767","icon_2x":false,"generated":false},"screenshots":[{"src":"https:\/\/ps.w.org\/coupon-exporter-for-woocommerce\/assets\/screenshot-1.png?rev=3248767","caption":"Export coupons page in the WooCommerce menu"}],"raw_content":"<!--section=description-->\n<p>Coupon Exporter for WooCommerce allows you to export all your WooCommerce coupons into a CSV file. This is particularly useful for backup, analysis, or migration purposes.<\/p>\n\n<h4>Features<\/h4>\n\n<ul>\n<li>Export all WooCommerce coupons to CSV with one click<\/li>\n<li>Includes comprehensive coupon data<\/li>\n<li>Secure export process<\/li>\n<li>Compatible with the latest WooCommerce version<\/li>\n<li>Batch processing for large exports<\/li>\n<li>Detailed error logging<\/li>\n<li>WordPress Multisite compatible<\/li>\n<li>PHP 8.x compatible<\/li>\n<\/ul>\n\n<h4>Export Data Includes<\/h4>\n\n<ul>\n<li>Coupon code<\/li>\n<li>Description<\/li>\n<li>Discount type<\/li>\n<li>Amount<\/li>\n<li>Expiry date<\/li>\n<li>Minimum spend<\/li>\n<li>Maximum usage limit<\/li>\n<li>Usage limit per user<\/li>\n<li>Product restrictions<\/li>\n<li>Category restrictions<\/li>\n<li>Email restrictions<\/li>\n<\/ul>\n\n<h3>Privacy<\/h3>\n\n<p>This plugin does not collect or store any personal data. When exporting coupons, it only processes data that already exists in your WordPress installation.<\/p>\n\n<p>The exported CSV file may contain email addresses if they were used in coupon restrictions. Please handle the exported file according to your privacy policy and data protection requirements.<\/p>\n\n<h3>Developer Notes<\/h3>\n\n<p>The plugin provides several filters to extend its functionality:<\/p>\n\n<h4>Filters<\/h4>\n\n<ul>\n<li><p><code>rwc_coupon_exporter_csv_headers<\/code> - Modify CSV headers\n  <code>php\nadd_filter('rwc_coupon_exporter_csv_headers', function($headers) {\n  $headers['my_field'] = 'My Field';\n  return $headers;\n});<\/code><\/p><\/li>\n<li><p><code>rwc_coupon_exporter_csv_row<\/code> - Modify row data before export\n  <code>php\nadd_filter('rwc_coupon_exporter_csv_row', function($row, $wc_coupon) {\n  $row[] = get_post_meta($wc_coupon-&gt;get_id(), 'my_custom_field', true);\n  return $row;\n}, 10, 2);<\/code><\/p><\/li>\n<\/ul>\n\n<!--section=installation-->\n<ol>\n<li>Upload the plugin files to the <code>\/wp-content\/plugins\/rwc-coupon-exporter<\/code> directory<\/li>\n<li>Activate the plugin through the 'Plugins' screen in WordPress<\/li>\n<li>Use the WooCommerce -&gt; Export Coupons menu to access the exporter<\/li>\n<\/ol>\n\n<!--section=faq-->\n<dl>\n<dt id='does%20this%20plugin%20require%20woocommerce%3F'><h3>Does this plugin require WooCommerce?<\/h3><\/dt>\n<dd><p>Yes, WooCommerce must be installed and activated for this plugin to work.<\/p><\/dd>\n<dt id='what%20data%20is%20exported%20in%20the%20csv%20file%3F'><h3>What data is exported in the CSV file?<\/h3><\/dt>\n<dd><p>The exported CSV includes coupon codes, descriptions, discount types, amounts, expiry dates, usage limits, and restrictions.<\/p><\/dd>\n<dt id='how%20does%20the%20plugin%20handle%20large%20numbers%20of%20coupons%3F'><h3>How does the plugin handle large numbers of coupons?<\/h3><\/dt>\n<dd><p>The plugin processes coupons in batches of 100 to prevent memory issues and ensure smooth operation even with large numbers of coupons.<\/p><\/dd>\n<dt id='is%20the%20plugin%20compatible%20with%20wordpress%20multisite%3F'><h3>Is the plugin compatible with WordPress Multisite?<\/h3><\/dt>\n<dd><p>Yes, the plugin is fully compatible with WordPress Multisite installations.<\/p><\/dd>\n<dt id='what%20php%20versions%20are%20supported%3F'><h3>What PHP versions are supported?<\/h3><\/dt>\n<dd><p>The plugin supports PHP 7.4 and higher, including PHP 8.x.<\/p><\/dd>\n\n<\/dl>\n\n<!--section=changelog-->\n<h4>1.3.2<\/h4>\n\n<ul>\n<li>Fixed HTML code appearing in exported CSV files<\/li>\n<li>Improved CSV file generation and download handling<\/li>\n<li>Enhanced error handling with proper nonce verification<\/li>\n<li>Optimized memory usage during export<\/li>\n<li>Improved UTF-8 encoding handling<\/li>\n<\/ul>\n\n<h4>1.3.1<\/h4>\n\n<ul>\n<li>Improved code organization<\/li>\n<li>Enhanced error handling<\/li>\n<li>Added batch processing for large exports<\/li>\n<li>Improved error logging<\/li>\n<li>Enhanced accessibility with ARIA labels<\/li>\n<li>Added developer hooks documentation<\/li>\n<li>Added privacy section<\/li>\n<li>Improved PHP 8.x compatibility<\/li>\n<li>Added WordPress Multisite support<\/li>\n<li>Code refactoring for better maintainability<\/li>\n<\/ul>","raw_excerpt":"Export WooCommerce coupons to a CSV file easily and efficiently.","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/test.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/220598","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/test.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/test.wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/test.wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=220598"}],"author":[{"embeddable":true,"href":"https:\/\/test.wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/reliefcreation"}],"wp:attachment":[{"href":"https:\/\/test.wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=220598"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/test.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=220598"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/test.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=220598"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/test.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=220598"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/test.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=220598"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/test.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=220598"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}