The
&showinmenu parameter is not quite performing as advertised, I’m afraid, because of factors connected with its heritage in pkBlog. I’ll try to fix it in the next release.
Meanwhile, here are two ways to get the required result in your PubKit items:
1) Add a hidden field to your input form setting a variable called "show" to "1"
<input name="show" type="hidden" value="1" />
2) Closer to the original way the
&showinmenu parameter was designed to operate, add a checkbox to your form with a name of "show" and value from placeholder "showInMenu" (note the case). This will be initialized to "checked" if
&showinmenu=`1` <input type="checkbox" value="[+showInMenu+]" name="show">
KP