PDA

View Full Version : Missing save button on admincp page - how to save the page?


DannyITR
04-26-2017, 12:25 PM
Hello,

There is a page in my admincp there I need to change some settings but It's like I cannot scroll down far enough to hit the save button in the right frame. The page in question is part of the unsupported DTO Online Vendor tools but I was wondering if there is some way to force the page to be saved? I tried hitting the enter key on the right side of my keyboard (and this works for other frames) but it didn't save it. I would appreciate any suggestions.

z3r0
04-26-2017, 01:15 PM
Try Alt+S

DannyITR
04-26-2017, 03:32 PM
A programmer friend told me this which worked!

hit F12. This should bring a window/panel.
Said panel should have a Console tab, click it.

In the console tab, copy/paste the following and hit enter:

jq=document.createElement('script');jq.src='https://code.jquery.com/jquery-3.2.1.slim.min.js';document.getElementsByTagName(' head')[0].appendChild(jq);

that will load the jquery library so we can add a button to the form. Give it a few seconds to load, then copy/paste this into the console and hit enter

$($('frame:eq(2)')[0].contentDocument).find('#optionsform').prepend('<button>yeah');

That should add a button above the form which you can use to save