Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Enrico Battocchi

    (@lopo)

    Hello @chrismccreery,
    support for WooCommerce Products is supposed to be re-enabled by adding a snippet like this one in your theme’s functions.php:

    function mytheme_add_product( $post_list ) {
    	$post_list[] = 'product';
    	return $post_list;
    }
    add_filter('duplicate_post_enabled_post_types', 'mytheme_add_product');

    Unfortunately, though, there is a bug that has been brought to our attention today, and that will be fixed in the next version.
    We apologize for the inconvenience!

    one3rdnerd

    (@one3rdnerd)

    Has this bug been resolved yet?

    Asking because a client asked about it today as they noticed it vanished and it was useful to them.

    When I suggested using the duplicate option provided by WooCommerce he reminded me that because we have added ACF fields and custom taxonomies the WooCommmerce duplicate feature doesn’t carry these over when duplicating. But the Yoast clone button did.

    So my client wants to try and get the clone feature back.

    Can I just use that function? or is there still a bug causing an issue?

    Plugin Author Enrico Battocchi

    (@lopo)

    Hi @chrismccreery and @one3rdnerd,
    version 4.1.2 (released today) should fix the issue.

    one3rdnerd

    (@one3rdnerd)

    Thanks for the update Enrico.

    Will I need to remove the above function before updating?

    Thanks

    Plugin Author Enrico Battocchi

    (@lopo)

    Hi @one3rdnerd,
    no, that snippet is still needed, we fixed the bug that prevented that code from working.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Clone Missing on Products’ is closed to new replies.