• Resolved robertokalop

    (@robertokalop)


    I have the same problem as this resolved threat:
    https://ww.wp.xz.cn/support/topic/uses-all-server-resources/

    A white screen when i try to export.
    If i do as you say in the threat:

    edit file /classes/core/class-wc-order-export-data-extractor.php

    find line
    public static function get_product_custom_fields() {
    add below it
    return array();`

    Won’t it make changes back again, if i update the plugin? And than every time i need to change it?

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

    (@algolplus)

    Hello

    please, don’t modify the plugin, you should add this code to functions.php

    add_filter( 'woe_get_product_custom_fields', function($fields){
        return array();
    });

    thanks, Alex

    Thread Starter robertokalop

    (@robertokalop)

    That didn’t work, but i checked log of woocommerce and it said XMLWriter missing enz…, so i put enable it on my hosting. And now it works.

    I read some of the other support questions here.

    Thank you.
    Have a great day.

    Plugin Author algol.plus

    (@algolplus)

    so it was problem with XML format.

    you’re welcome.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘White screen when i try export’ is closed to new replies.