Ok, I am trying to add user's name to the title variable in member.html (first line of code in the file)... and I am getting some smarty errors with everything I try... so what should be the correct way (if it exists at all) of adding the following: Code: $smarty.session._amember_user.name_f to the default value for title: Code: {assign var="title" value=$smarty.const._TPL_MEMBER_TITLE} ???
Miso, contact us via helpdesk for quick response time if the question is urgent. You can use in template instead of {$title} the following: PHP: {$title|cat:" "|cat:$smarty.session._amember_user.name_f}