| 259 | |
| 260 | ---- |
| 261 | |
| 262 | == The Member Log-In Link at the far right side of my homepage header does not work! == |
| 263 | |
| 264 | This is connected with some relocation settings on your server. To fix it, open the file '''templates/tmpl_uni/scripts/functions.php''' and replace |
| 265 | |
| 266 | {{{ |
| 267 | <a href="<?= $site['url'] ?>member.php" onclick="showItemEditForm('login_div'); $( '#login_div' ).show().load( '<?= $site['url'] ?>member.php?action=show_login_form&relocate=' + encodeURIComponent( window.location ) );return false;"><?= _t( '_Member Login' ) ?></a> |
| 268 | }}} |
| 269 | |
| 270 | with |
| 271 | |
| 272 | {{{ |
| 273 | <a href="<?= $site['url'] ?>member.php" onclick="showItemEditForm('login_div'); $( '#login_div' ).show().load( '<?= $site['url'] ?>member.php?action=show_login_form&relocate=' + encodeURIComponent( window.location.pathname ) );return false;"><?= _t( '_Member Login' ) ?></a> |
| 274 | }}} |