I login as Paid user but http://domain.com/upgrade.html
Below Upgrade Account box:
Please fix
Below Upgrade Account box:
Login as Admin, it is OKAccount Status
Account Type: Free User
Both themesAccount Status
Account Type: Admin
Reverts To Free Account: Never
Code:
<table class="table table-bordered table-striped">
<tbody>
<tr>
<td style="width: 240px;">
<?php echo UCWords(t('account_type', 'account type')); ?>:
</td>
<td>
<?php echo t('account_type_' . str_replace(' ', '_', $Auth->level), UCWords($Auth->level)); ?>
</td>
</tr>
<?php if ($Auth->level_id >= 2): ?>
<tr>
<td>
<?php echo UCWords(t('reverts_to_free_account', 'reverts to free account')); ?>:
</td>
<td>
<?php echo($Auth->level_id >= 10) ? UCWords(t('never', 'never')) : coreFunctions::formatDate($Auth->paidExpiryDate); ?>
</td>
</tr>
<?php endif ?>
</tbody>
</table>