Change in wifi manager library

Hello
Is it possible to change the appearance of the web server in the wifi manager library? For example, I want the info and update options to be deleted.

You have the source code for the library so why not have a go at changing it yourself ?

Make a copy of the original before you change anything

std::vector<const char*> wmMenuItems = { "wifi",  "exit" };
wm.setMenu(wmMenuItems);

I don't know how to access the library code and open it.
Can I open the source code in Arduino and change it?

thank you Juraj . How to open the source code in the Arduino ?

at the top of your code you have a line

#include < filename.h >

search for this filename on your harddisc
A library contains a *.h and a *.cpp-file

As a minimum you should provide your source-code so that anyone can see what library you are using

best regards Stefan

the code snippet goes into setup() of your sketch

Yes, I did it. Thank you very much guys.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.