Loading...
 
Themes

Themes


Registration link in Tikicorp

Belgium

I have a version 21.2 Tiki site and want new users to be able to register. I think my settings are correct, the register link appears in the login popup and works with some themes I tested (Default, Feb12, Fivealive) but not with Tikicorp. In Tikicorp the link appears but doesn't seem to be a real clickable link. Tried with Firefox and Chrome.

I'm not a web developer but this seems to be the relevant html snippet:

Copy to clipboard
<div ><ul class="list-unstyled"><li class="register dropdown-item list-item"><a href="tiki-register.php" title="Click here to register">Register</a></li></ul></div>


I tried to check the themes css files but have to admit my knowledge in that field is insufficient. Does anybody have a clue what could be the cause of my link not appearing as a link and how to fix it?

http://145plus.net/21_x/tiki-index.php

Japan

The problem is happening because the log-in form wasn't fully updated when Tiki upgraded from Bootstrap 3 to 4 (the HTML and CSS of dropdowns containing links was simplified), so that needs to be corrected in Tiki's code.

In the meantime, you can add this to the CSS Customization textarea on tiki-admin.php?page=look:

.dropdown-menu li.dropdown-item::before { z-index: -1; }

I believe that should enable the link to work.

-- Gary