I use (OJS 3.3.0.6),
I think the “userRegisterComplete.tpl” page is not working properly, because after registration validation they are not displayed the “What would you like to do next?”
The page shows only the first paragraphs without the links.
I would like a copy of the .tpl file to upload and test. Can someone send me one?
A copy of our file “userRegisterComplete.tpl” is below:
{**
- templates/frontend/pages/userRegisterComplete.tpl
- Copyright (c) 2014-2021 Simon Fraser University
- Copyright (c) 2000-2021 John Willinsky
- Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
-
@brief A landing page displayed to users upon successful registration
*}
{include file=“frontend/components/header.tpl”}
{include file="frontend/components/breadcrumbs.tpl" currentTitleKey=$pageTitle}
<h1>
{translate key=$pageTitle}
</h1>
<p>
{translate key="user.login.registrationComplete.instructions"}
</p>
<ul class="registration_complete_actions">
{if array_intersect(array(ROLE_ID_MANAGER, ROLE_ID_SUB_EDITOR, ROLE_ID_ASSISTANT, ROLE_ID_REVIEWER), (array)$userRoles)}
<li class="view_submissions">
<a href="{url page="submissions"}">
{translate key="user.login.registrationComplete.manageSubmissions"}
</a>
</li>
{/if}
{if $currentContext}
<li class="new_submission">
<a href="{url page="submission" op="wizard"}">
{translate key="user.login.registrationComplete.newSubmission"}
</a>
</li>
{/if}
<li class="edit_profile">
<a href="{url router=$smarty.const.ROUTE_PAGE page="user" op="profile"}">
{translate key="user.editMyProfile"}
</a>
</li>
<li class="browse">
<a href="{url page="index"}">
{translate key="user.login.registrationComplete.continueBrowsing"}
</a>
</li>
</ul>
{include file=“frontend/components/footer.tpl”}