- Posts: 198
- Thank you received: 4
Order status language in frontend doesn't change
The order statuses is always in English here, but in emails they are in my native language.
That means i did translated them and emails with translated order statuses are working great, only in frontend its not.
Please Log in or Create an account to join the conversation.
Change the line:
if($value->category_name == $status){
to:
if($value->category_namekey == $status){
in the file administrator/components/com_hikashop/types/categorysub.php and it should work.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
2. Falang translation
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
CREATED="sukurtas"
PENDING="laukiame apmokėjimo"
CONFIRMED="apmokėtas"
CANCELLED="atšauktas"
REFUNDED="grąžintas"
SHIPPED="išsiųstas"
RECEIVED="gautas"
RESULTS="rezultatas"
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Try to change the line:
by:
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
there is code generating this combo box with payment types right?
echo $this->payment->display('new_payment_method',$row->order_payment_method,$row->order_payment_id,false);
but it does not generate correctly select list because it is not using Jtext i think .. you know <option value="something">something in my language</option>....
Please Log in or Create an account to join the conversation.
Falang is not loaded on the backend and thus the payment names are not translated in the backend.
Please Log in or Create an account to join the conversation.