But it's the same in my case: we have to click on the connection menu and select the connection to get this context menu!
And that seems normal to me because not everyone visiting the site needs to log in...
So in your case you would like to have the pop-in window every time until the visitor logs in? I think this will offend many visitors!
If you really want that, you have to trigger the pop-in window when the front page is loading, if user is not logged in.
To do, you have to include an
javascript directive into the
html tag.
Find this
tag and replace it with this code:
<?php if (!$this->request->config->get('dont_allow_registration_and_login') || $this->request->config->get('pawtucket_requires_login')) { echo "<body onload='caMediaPanel.showPanel(\""; echo caNavUrl($this->request, '', 'LoginReg', 'LoginForm', array()); echo "\"); return false;' >"; } else { echo "<body>"; }?>