WebDevStudios / Etsy-Product-Importer-for-WordPress

Etsy product importer for WordPress
1 stars 2 forks source link

Duplicates CPt #22

Open renzosalvador opened 7 years ago

renzosalvador commented 7 years ago

Hi, the plugin Duplicates the custom post type PRoducts. as it already exists via Woocommerce.

tw2113 commented 7 years ago

Looks like it's just the rewrite slug/url that is in conflict. The post type slug we use is "etsy_product", but we have it rewrite to "product" as part of the register_post_type() call.

https://github.com/coreymcollins/Etsy-Product-Importer-for-WordPress/blob/master/etsy-importer.php#L209

https://github.com/coreymcollins/Etsy-Product-Importer-for-WordPress/blob/master/etsy-importer.php#L247

I can't call this a bug, just an unfortunate clash.