سلام
درست عزیز در این قسمت تنها امکان ثبت اطلاعات تماس امور مالی / مدیریت / امور فنی میباشد، و اطلاعات رجیسترانت تنها مطابق پروفایل مشتری به Onlinenic ارسال می شود.
http://docs.whmcs.com/Domains_Tab
The client's details will always be used as the registrant contact, ticking Use Clients Details will use their details for all other contacts. But by unticking this option and entering your details in the fields beneath these will be used as the Billing, Admin and Technical contacts instead. Clients will be able to change this via their client area later.
از whmcs پرسیدم میگن که امکانش هست با hook اینکار را انجام بدید. کسی هست بتونه راهنمایی کنه با توجه به لینک زیر هوک را چطور میشه ایجاد کرد؟
http://docs.whmcs.com/Hooks:PreDomainRegister
من کد زیر رانوشتم بعنوان hook کسی میتونه چک کنه اکی هست یا نه:
<?php
function hook_registrant($string) {
<data name=”r_name”>njhu</data>
<data name=”r_org”> Co.</data>
<data name=”r_country”>Ca</data>
<data name=”r_province”>ssxd</data>
<data name=”r_city”>vff</data>
<data name=”r_street”>vffdf</data>
<data name=”r_postalcode”>fdfd</data>
<data name=”r_voice”>+1.29852659</data>
<data name=”r_fax”>+1.121599</data>
<data name=”r_email”>email@email.com</data>
add_hook("Transliteration",1,"hook_registrant");
?>