• Hi,

    I am using Checkout Field Editor (Checkout Manager) for WooCommerce and I had set up an export for different fields, including – order_notes. Which worked fine until a week ago and now the order_notes field is blank in the export. Is this something you heard about before or something you know how I can fix?

    See the plugins setup on the images I linked below.

    View post on imgur.com

    Thanks in advance

    The page I need help with: [log in to see the link]

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

    (@algolplus)

    Hi

    It was bad idea ??
    as key “order_notes” matches to default field “Order Notes”.
    We read metabox “Order Notes” to fill this field.

    Please, open section “Misc Settings” and add this PHP code.
    thanks ,Alex

    add_filter('woe_get_order_value_order_notes', function ($value, $order, $fieldname) {
    return  $order->get_meta("order_notes");
    }, 10, 3);

    Hello,

    Is it possible to have the export alphabetically sorted by order comments (customer notes)? I have the field in my export already but would like to have the report alpha sorted by customer notes.

    Thank you!

    Plugin Author algol.plus

    (@algolplus)

    Hello

    you can try to adapt code from section https://docs.algolplus.com/algol_order_export/sort-by-product-names/

    you must modify usort

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Custom checkout field export’ is closed to new replies.