Viewing 1 replies (of 1 total)
  • Plugin Author rainafarai

    (@rainafarai)

    Hi you can add link with a filter and a function in you function.php …

    //after items
    add_filter(‘nftb_order_after_items_hook’, ‘my_filter_function’, 10, 1);

    //or at the end of the message
    add_filter(‘nftb_order_footer_message_hook’, ‘my_filter_function’, 10, 1);

    so now in you function you can access the Order Object

    $order = wc_get_order($order_id);
    with$order_id you can create a link to edit order

    here more example and contact module if you need more support
    https://www.reggae.it/my-wordpress-plugins#contact

    • This reply was modified 2 months ago by rainafarai.
Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.