Yes, of course. I have 2 different users on 2 differents browsers
I made this patch to correct the issue without to modify your code
This could help you to fix the bug
// fix bug v9.2 where customer order detail does not display valid form
function ccw_wooconvo_react_data( $wooconvo_data ) {
$found = false;
foreach(debug_backtrace(2) as $item) {
if (strstr($item[“file”], “/wp-admin/”)) {
$found = true;
break;
}
}
if (isset($wooconvo_data[“user_id”]) && isset($wooconvo_data[“order_id”]) && $wooconvo_data[“context”] == “wp_admin” && $found === false)
$wooconvo_data[“context”] = “myaccount”;
return $wooconvo_data;
}
add_filter( ‘wooconvo_react_data’, ‘ccw_wooconvo_react_data’);