• Resolved dharminpatelverz

    (@dharminpatelverz)


    Hello There,

    I have Installed your plugin but Suddenly after order I tried to export order from backend but YITH extra field options which I selected during order its not showing in backend. Suddenly Its not working So can you please help me on this ASAP

    I have also purchase your pro plugin

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

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

    (@algolplus)

    For whom having same problem with field “Product variation” — you must add this code to section “Misc Settings”

    add_filter('woe_get_order_product_value_product_variation', function ($value, $order, $item, $product,$item_meta) {
    $data = $item->get_meta("_ywapo_meta_data");
    if(!is_array($data)) return $value;
    $yith_meta = array();
    foreach($data as $opt_group)
    foreach($opt_group as $opt)
    $yith_meta[] = $opt['display_label'] . ':' . $opt['display_value'];
    $value .= " | " . implode(" | ", $yith_meta);
    return $value;
    }, 10, 5);

Viewing 1 replies (of 1 total)
  • The topic ‘YITH WooCommerce Product Add-ons & Extra Options Not Showing In Export Order’ is closed to new replies.