Hi Daniel,I didn't save that recording, but I can provide you manual how it possible:1. Open "Portal page customization" of your portal2. Select "Advanced customization" and choose "Export/Import theme"3. Export theme and insert style (if it is for t...
Could you please try something like this:
Bold strings - "office 1" (This is what you can see in dropdown menu) and "credentials ("user1", "Test123") of created users, you can change whatever you want. Users should be created beforehand.
Also you co...
You could try to replace:
jQuery('#ui_login_self_reg_button').click();
to:setTimeout(function(){
jQuery('#ui_login_self_reg_button').click();
}, 1000);
1000 = 1 second (you could increase/decrease)
I think it should help, if you replace :
portalloginForm.elements["user.password"].value = '0';
portalloginForm.elements["user.password"].style.visibility = 'hidden';
portalloginForm.elements["user.password"].type = 'hidden';
To this:
$('[name="use...