Jump to content

Domain List - Auto Renew for Cancelled Domains


Recommended Posts

Hello there,

We think that's not useful to display the auto renew option as ON for cancelled/expired domains on client area.
In fact this can be pretty confuse for customers.

If you prefer to show just the domain status for cancelled/expired domains, just do the following:

file: templatename/clientareadomains.tpl

replace:

<td>
{if $domain.autorenew}
<i class="fas fa-fw fa-check text-success"></i> {$LANG.domainsautorenewenabled}
 {else}
 <i class="fas fa-fw fa-times text-danger"></i> {$LANG.domainsautorenewdisabled}
{/if}
</td>

by:

<td>
 if $domain.status eq 'Active'}
{if $domain.autorenew}
<i class="fas fa-fw fa-check text-success"></i> {$LANG.domainsautorenewenabled}
{else}
<i class="fas fa-fw fa-times text-danger"></i> {$LANG.domainsautorenewdisabled}
{/if}
{else}<i class="fas fa-fw fa-times text-muted"></i> {$LANG.domainsautorenewdisabled}
{/if}
</td>

 

domain_list.jpg

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated