• jerbnl

    (@jerbnl)


    Hi Support,

    We are working with Woocommerce product bundles. When we export the orders we see this in the export file:

    EXAMPLE

    Product bundle name 3 items
    – item 1
    – item 2
    – item 3

    But we don’t want to show the products 1,2,3 from the bundle in the export file. Only the bundle name! How can we don’t show the products in the export file?

    Thank you.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author algol.plus

    (@algolplus)

    hi

    please, open section “Misc Settings” and add following code

    add_filter('woe_skip_order_item', function($skip, $product, $item, $item_meta, $post){
    	return !empty($item['_bundled_by']) ;
    },10,5);
    Thread Starter jerbnl

    (@jerbnl)

    Hi!

    Where can I find the Misc settings? Thank you in advance.

    Plugin Author algol.plus

    (@algolplus)

    it’s at bottom of the form. Just above buttons.

    Thread Starter jerbnl

    (@jerbnl)

    Could you send a screenshot? I can’t find it where to past the snippet…

    Plugin Author algol.plus

    (@algolplus)

    Thread Starter jerbnl

    (@jerbnl)

    This works! Amazing.

    Thank you for develop this plugin. We’re using it everyday.
    Make an option for a donation?

    Plugin Author algol.plus

    (@algolplus)

    You’re very welcome.

    no need , but thank you ??

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Woocommerce Product bundles: how to export?’ is closed to new replies.