如何在带有货币的模板中显示产品价格(WHMCS)
how to show the product price in template with currency (WHMCS)
我需要,当用户本次更改货币时自动更改与当前活跃度相关的价格。
<h4 class="h5">Starting At<strong>
{if $currency=2 } // currency id = 2//
Rs 1.19
{else}
$ 1.19
{/if}
<small>/m</small></strong></h4>
我试试这个代码。但不起作用。 :(
请帮助我
WHMCS 不会在所有页面上加载当前货币,我认为只有购物车页面。
因此您需要添加一个货币选择表单以允许客户端在货币之间切换。
<form action="" method="post">
<label for="currency_sel">Currency:</label>
<select name="currency" id="currency_sel" class="form-control" onchange="submit();">
<option value="1" {if $smarty.post.currency eq '1'}selected{/if}>$</option>
<option value="2" {if $smarty.post.currency eq '2'}selected{/if}>Rs</option>
</select>
</form>
所选货币将可用于变量 $smarty.post.currency
按如下方式更新您的代码:
<h4 class="h5">Starting At<strong>
{if $smarty.post.currency eq '2' }
Rs 1.19
{else}
$ 1.19
{/if}
<small>/m</small></strong></h4>
使用这个 100% 工作
{if $activeCurrency.id > 1 }
[=10=].60
{else}
₹45
{/if}
我需要,当用户本次更改货币时自动更改与当前活跃度相关的价格。
<h4 class="h5">Starting At<strong>
{if $currency=2 } // currency id = 2//
Rs 1.19
{else}
$ 1.19
{/if}
<small>/m</small></strong></h4>
我试试这个代码。但不起作用。 :( 请帮助我
WHMCS 不会在所有页面上加载当前货币,我认为只有购物车页面。
因此您需要添加一个货币选择表单以允许客户端在货币之间切换。
<form action="" method="post">
<label for="currency_sel">Currency:</label>
<select name="currency" id="currency_sel" class="form-control" onchange="submit();">
<option value="1" {if $smarty.post.currency eq '1'}selected{/if}>$</option>
<option value="2" {if $smarty.post.currency eq '2'}selected{/if}>Rs</option>
</select>
</form>
所选货币将可用于变量 $smarty.post.currency
按如下方式更新您的代码:
<h4 class="h5">Starting At<strong>
{if $smarty.post.currency eq '2' }
Rs 1.19
{else}
$ 1.19
{/if}
<small>/m</small></strong></h4>
使用这个 100% 工作
{if $activeCurrency.id > 1 }
[=10=].60
{else}
₹45
{/if}