Jump to content

Domain Register List


FlyHost

Recommended Posts

in v7, you'd have to modify the jquery to do this as the lookups use ajax.

 

one other thing to mention is that just because a domain is "unavailable", it doesn't necessarily mean it can be transferred... it could be a premium domain, it could be a reserved word, it could be a whois error etc...

Link to comment
Share on other sites

in v7, you'd have to modify the jquery to do this as the lookups use ajax.

 

one other thing to mention is that just because a domain is "unavailable", it doesn't necessarily mean it can be transferred... it could be a premium domain, it could be a reserved word, it could be a whois error etc...

 

In WHMCs version 7, will I be able to use the old form order relation?

Link to comment
Share on other sites

In WHMCs version 7, will I be able to use the old form order relation?

i'm not sure I understand what you are asking... :?:

 

but just to clarify my earlier remarks about ajax, it will only apply to 'standard_cart'... if your default orderform template is 'Modern', you can still use the previous solution I posted about v6 :idea:

 

https://forum.whmcs.com/showthread.php?109639-Add-transfer-domain-to-domainchecker&p=448302#post448302

 

in modern/domainoptions.tpl, you could change...

 

{elseif $status eq "unavailable"}
<div class="domainunavailable">{$LANG.cartdomaintaken|sprintf2:$domain}</div>
<p align="center">
   <button type="button" onclick="cancelcheck()" class="btn btn-default btn-lg">
       <i class="fa fa-arrow-circle-left"></i>
       {$LANG.carttryanotherdomain}
   </button>
</p>

to...

{elseif $status eq "unavailable"}
{assign domsearch $domain|strpos:"."}
{assign sld $domain|substr:0:$domsearch}
{assign tld $domain|substr:($domsearch+1)} 
<div class="domainunavailable">{$LANG.cartdomaintaken|sprintf2:$domain} <a href="cart.php?a=add&domain=transfer&sld={$sld}&tld={$tld}" class="btn btn-primary">{$LANG.domainstransfer} {$sld}.{$tld}</a></div>
<p align="center">
   <button type="button" onclick="cancelcheck()" class="btn btn-default btn-lg">
       <i class="fa fa-arrow-circle-left"></i>
       {$LANG.carttryanotherdomain}
   </button>
</p>

DZXhedg.png

 

clicking on the transfer button will submit the domain to the transfer form and will give the user a price for the transfer. :idea:

Link to comment
Share on other sites

i'm not sure I understand what you are asking... :?:

 

but just to clarify my earlier remarks about ajax, it will only apply to 'standard_cart'... if your default orderform template is 'Modern', you can still use the previous solution I posted about v6 :idea:

 

https://forum.whmcs.com/showthread.php?109639-Add-transfer-domain-to-domainchecker&p=448302#post448302

 

in modern/domainoptions.tpl, you could change...

 

{elseif $status eq "unavailable"}
<div class="domainunavailable">{$LANG.cartdomaintaken|sprintf2:$domain}</div>
<p align="center">
   <button type="button" onclick="cancelcheck()" class="btn btn-default btn-lg">
       <i class="fa fa-arrow-circle-left"></i>
       {$LANG.carttryanotherdomain}
   </button>
</p>

to...

{elseif $status eq "unavailable"}
{assign domsearch $domain|strpos:"."}
{assign sld $domain|substr:0:$domsearch}
{assign tld $domain|substr:($domsearch+1)} 
<div class="domainunavailable">{$LANG.cartdomaintaken|sprintf2:$domain} <a href="cart.php?a=add&domain=transfer&sld={$sld}&tld={$tld}" class="btn btn-primary">{$LANG.domainstransfer} {$sld}.{$tld}</a></div>
<p align="center">
   <button type="button" onclick="cancelcheck()" class="btn btn-default btn-lg">
       <i class="fa fa-arrow-circle-left"></i>
       {$LANG.carttryanotherdomain}
   </button>
</p>

DZXhedg.png

 

clicking on the transfer button will submit the domain to the transfer form and will give the user a price for the transfer. :idea:

 

As the version rises, the encoding system makes it difficult.

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