$enable_user_password_modification = 0 "breaks" header layout

eugenio

Administrator
Staff member
In DaDaBIK 12.x, if you set
$enable_user_password_modification = 0;
the top right corner of the layout is not rendered as it should.

Workaround

open /include/header.php and find these two lines

<?php if ($show_your_account ===1 ){ ?>
<ul class="dropdown-menu dropdown-menu-end my-2">

and swap them

<ul class="dropdown-menu dropdown-menu-end my-2">
<?php if ($show_your_account ===1 ){ ?>
 
Top