for some legal reasons, I need default currency VND , ONLY for non-logged in users. My real default currency is USD, which must remain.
As failing with support and time running out, keeping all offline and playing with the code .................., This is a last week, I can burn into this matter .
There must be somewhere a point, in some file, possible similar "$this-> currency ... set curency "VND" "
in fact, partially working, not all over, even some weblink redirection does work: when adding: '?currency=USD'
Question
Tiny
Hi all,
for some legal reasons, I need default currency VND , ONLY for non-logged in users. My real default currency is USD, which must remain.
As failing with support and time running out, keeping all offline and playing with the code .................., This is a last week, I can burn into this matter .
There must be somewhere a point, in some file, possible similar "$this-> currency ... set curency "VND" "
in fact, partially working, not all over, even some weblink redirection does work: when adding: '?currency=USD'
$( document ).ready(function() {
$('#change_currency').find('option[value=VND]').attr('selected','selected');
});
--------html------------
<div class="row">
<div class="col-md-5 col-sm-5 col-xs-5">
<form method="GET" action="/order/summary/index/Hosting%20Packages">
<div class="form-group currency-selector">
<select name="currency" class="form-control input-sm" id="change_currency">
<option value="USD" selected="selected">USD</option>
<option value="VND">VND</option>
</select>
</div>
</form>
<div class="col-md-7">
</div>
</div>
-------------------------------------------------------------
The above works partially only, and only then, when at the packes, eg: 20Packages/?group_id=19 ¤cy=VND.
I assume strong, that is also via a php one-liner possible, something like "$this-> currency ... set curency "VND" "
Anyone out there, who can push me in the right direction before I leave or pause the blesta world?
Again, the DEFAULT USD MUST REMAIN intact, only the for non-logged in customers, the VND must show initial.
Tiny
16 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.