How do I always have the Help text showing? So I don't always have to click the question mark?

Comments

grahl’s picture

You can call the click function in Javascript with click(), crude but effective. I use this on node adding and editing pages:

if ( window.location.href.indexOf("node/add/") >= 0 ||
(window.location.href.indexOf("node/") >= 0 && window.location.href.indexOf("/edit") >= 0 )) {
$('#help-toggler').click();
}

aramboyajyan’s picture

Issue summary: View changes
Status: Active » Closed (won't fix)

All old and outdated 6.x issues are being closed.
Maintainer support will be provided only for major / blocking issues.

If you feel like this issue should be re-opened, feel free to do so.

Thanks!