Looking at the Marlin code, it looks like the Advanced menu should have the Z offset editing submenu - but it’s not there.
Specifically, file Marlin\src\lcd\menu\menu_advanced.cpp has these lines:
// M851 - Z Probe Offsets
#if HAS_BED_PROBE
if (!is_busy) SUBMENU(MSG_ZPROBE_OFFSETS, menu_probe_offsets);
#endif
This code is inside #if DISABLED(SLIM_LCD_MENUS) region. I checked, and SLIM_LCD_MENUS is indeed disabled (in Configuration.h). Also, HAS_BED_PROBE is enabled (inside Conditionals_LCD.h), because FIX_MOUNTED_PROBE is enabled (inside Configuration.h).
So the submenu with the text "Probe Offsets"should be present in the Advanced menu, but it’s not there. I am obviously missing something - does anyone know what’s missing?