• Resolved hammadx11

    (@hammadx11)


    Fatal error: Uncaught Error: Call to undefined method Automattic\WooCommerce\Admin\Overrides\OrderRefund::get_billing_first_name()

Viewing 3 replies - 1 through 3 (of 3 total)
  • Dina S.

    (@themehighsupport)

    Please add the below code snippet in your child theme’s functions.php file in order to fix the issue.

    add_filter('woocommerce_order_query_args', 'th9e_woocommerce_order_query_args', 99);
    function th9e_woocommerce_order_query_args($args){
    if(isset($_GET['page']) && $_GET['page'] == 'thwecmf_email_customizer'){
    $args['type'] = array('shop_order');
    }
    return $args;
    }

    We hope this will help.

    Thread Starter hammadx11

    (@hammadx11)

    Hi Dina, it worked. Thank you!

    Dina S.

    (@themehighsupport)

    Glad to hear that.

    Have a great day!

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.