Home Affiliates Marketing Domains Marketing Webhost Services Contact Us

Whmcs 如何设置客户CAN NOT 申请取消 请求取消 product

 whmcs 里面注意:客户申请了取消此服务 这个客户又不想取消了,怎么设定啊

山西网友:后台找到这个客户, 在产品里 下方有一个到期删除 吧。。 好像是这


江苏网友:其实这个可以关闭,然后客户想取消的时候,发TK,然后后台取消,别让客户乱点,特别是一些人,特别喜欢试。。

台湾网友:

求教,这个已经申请的怎么关闭啊


湖北网友:到期之后自动终止 勾去掉 原因删空


试试


Here is correct  file for :   主目录  \  httpdocs    \ whmcs   \     templates\

\ six/    clientareacancelrequest.tpl


{if $invalid}


    {include file="$template/includes/alert.tpl" type="error" msg=$LANG.clientareacancelinvalid textcenter=true}

    <p class="text-center">

        <a href="clientarea.php?action=productdetails&amp;id={$id}" class="btn btn-primary">{$LANG.clientareabacklink}</a>

    </p>


{elseif $requested}


    {include file="$template/includes/alert.tpl" type="success" msg=$LANG.clientareacancelconfirmation textcenter=true}


    <p class="text-center">

        <a href="clientarea.php?action=productdetails&amp;id={$id}" class="btn btn-primary">{$LANG.clientareabacklink}</a>

    </p>


{else}


    {if $error}

        {include file="$template/includes/alert.tpl" type="error" errorshtml="<li>{$LANG.clientareacancelreasonrequired}</li>"}

    {/if}


    {include file="$template/includes/alert.tpl" type="info" textcenter=true msg="{$LANG.clientareacancelproduct}: <strong>{$groupname} - {$productname}</strong>{if $domain} ({$domain}){/if}"}


    <form method="post" action="{$smarty.server.PHP_SELF}?action=cancel&amp;id={$id}" class="form-stacked">

        <input type="hidden" name="sub" value="submit" />


        <fieldset>

            <div class="form-group" style="display:none;">

                <label for="cancellationreason">{$LANG.clientareacancelreason}</label>

                <textarea name="cancellationreason" id="cancellationreason" class="form-control" rows="6" class="fullwidth"></textarea>

            </div>


            {if $domainid}

            <div class="panel panel-warning">

                <div class="panel-heading">

                    <h3 class="panel-title">{$LANG.cancelrequestdomain}</h3>

                </div>

                <div class="panel-body">

                    <p>{$LANG.cancelrequestdomaindesc|sprintf2:$domainnextduedate:$domainprice:$domainregperiod}</p>

                    <div class="col-sm-12 text-center">

                        <label class="checkbox">

                            <input type="checkbox" name="canceldomain" id="canceldomain" /> {$LANG.cancelrequestdomainconfirm}

                        </label>

                    </div>

                </div>

            </div>

            {/if}


            <div class="form-group" style="display:none;">

                <div class="form-inline text-center">

                    <label class="control-label" for="type">{$LANG.clientareacancellationtype}</label>

                    <select name="type" id="type" class="form-control">

                        <option value="Immediate">{$LANG.clientareacancellationimmediate}</option>

                        <option value="End of Billing Period">{$LANG.clientareacancellationendofbillingperiod}</option>

                    </select>

                </div>

            </div>

            <div class="form-group" style="display:none;">

                <div class="form-inline text-center">

                    <input type="submit" value="{$LANG.clientareacancelrequestbutton}" class="btn btn-danger" />

                    <a href="clientarea.php?action=productdetails&id={$id}" class="btn btn-default">{$LANG.cancel}</a>

                </div>

            </div>


        </fieldset>


    </form>


{/if}