How to modify Marlin code so that one can edit Z offset value in advanced menu?

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?

Are you talking about Baby Stepping…??

Double clicking the knob will take you to the Baby Steps screen.

No, it’s not about baby stepping, it’s about editing the z offset value in the advanced menu. I know Marlin has this option - my older Anet A8 printer running Marlin has it.

Also, not sure which knob I am supposed to double click? I have the stock SV06 Plus printer.

Sorry my mistake, I own all of the SV06 printers & forget sometimes that they each have a different screen :grin:
As for your question…
I did look into adding a custom version of Marlin on it, but the screen software is the issue.
AFAIK, their is still no custom version for the Plus, it’s either Stock or Klipper.

@sovol3d