App reviews, troubleshooting, and recommendations
Hi,
I have been working on a task that basically is to when an order is submitted then add some notes to orders based on the logic in the extension.
I have read the docs and found that there is a hook named
if (our logic) { setNotes({ type: "updateNote", value:`there comes the note`, }); }
Solved! Go to the solution
This is an accepted solution.
if (our logic) { setNotes({ type: "updateNote", note:`there comes the note`, }); }
This was resolved by setting the value to note in the object passed. A slight overlook on my side.
anybody ??
This is an accepted solution.
if (our logic) { setNotes({ type: "updateNote", note:`there comes the note`, }); }
This was resolved by setting the value to note in the object passed. A slight overlook on my side.
Please explain how to pass datepicker value to note in the object passed?
You can sync the date picker's current value to this object via some state or variable so that whenever the date picker value changes the note object always gets the updated value of the date picker.
@analyst not sure about additional notes. I passed the dynamic data as note-only using
Do you know how to pass date value as note_attribute ?
hey do you might please share the whole code , as I'm
also kind of doing same task and stuck , it would ne really helpful thanks
stuck with same useApplyNoteChange().
useApplyNoteChange({
type: "updateNote",
note: "shipping note",
});
Hi,
for useApplyNoteChange to work you want to use the returned function and not pass arguments to the hook directly:
const applyNoteChange = useApplyNoteChange();
applyNoteChange({type: 'updateNote', note: 'some amazing note info'})
Hi Got it. Thanks
We want to take a moment to celebrate the incredible ways you all engage with the Shopi...
By JasonH Oct 15, 2024Starting a B2B store is a big undertaking that requires careful planning and execution. W...
By JasonH Sep 23, 2024By investing 30 minutes of your time, you can unlock the potential for increased sales,...
By Jacqui Sep 11, 2024