Forum Replies Created
-
AuthorPosts
-
December 3, 2012 at 6:03 pm in reply to: eStore – how can I test my custom receipt before using it in production ? #51932b_machuelMember
Understood. Thanks a lot.
Benoît
———
July 14, 2012 at 8:31 am in reply to: Estore – Error messages not coming out in natural language #47220b_machuelMember– De-activated (customized) estore plugin
– Re-activated (customized) estore plugin
Now the text appear as expected, but only in English.
July 12, 2012 at 11:51 am in reply to: Estore – Error messages not coming out in natural language #47218b_machuelMemberThanks for your prompt reply.
It is present in all language files.
July 11, 2012 at 5:32 pm in reply to: Estore – Error messages not coming out in natural language #47215b_machuelMemberYou’re right I should have said variable.
You can test it at http://www.label-inconnu.com/e-shop/enregistrements/lucis-memoria.
Best wishes,
Benoît
July 11, 2012 at 9:44 am in reply to: Estore – Redirection message upon checkout not translated with multilingual #47116b_machuelMemberThis is working. Many thanks.
Best wishes,
Benoît
July 10, 2012 at 7:24 am in reply to: Estore – Redirection message upon checkout not translated with multilingual #47114b_machuelMemberDone.
Benoît
July 9, 2012 at 4:19 am in reply to: Estore – Redirection message upon checkout not translated with multilingual #47112b_machuelMemberMany thanks for your prompt reply. I edited wp_eStore1.php as follows:
//includes
/*$cart_language = get_option(‘eStore_cart_language’);
if (!empty($cart_language))
$language_file = “languages/”.$cart_language;
else
$language_file = “languages/eng.php”;
include_once($language_file);*/
function wp_eStore_load_qTranslate_lang() // Added qtranslate support
{
$cart_language = qtrans_getLanguage();
if ($cart_language == “en”) $language_file = “languages/i18n.php”;
else $language_file = “languages/fr.php”;
if(empty($language_file)) {
$cart_language = get_option(‘eStore_cart_language’);
if (!empty($cart_language)){
$language_file = “languages/”.$cart_language;
}
else{
$language_file = “languages/fr.php”;
}
}
include_once($language_file);
}
add_action(‘init’, ‘wp_eStore_load_qTranslate_lang’); // End of qtranslate support
The website (under development) can be reached at the following address:
http://www.label-inconnu.com/e-shop/enregistrements/lucis-memoria?lang=en
-
AuthorPosts