Forum Replies Created
-
AuthorPosts
-
January 29, 2012 at 5:27 am in reply to: Sales and customers not recording and emails not sending. #41340
admin
KeymasterDo a test transaction with debug option enabled then share the content of the debug file (make sure to reset it before doing the test). This post will help:
https://support.tipsandtricks-hq.com/forums/topic/how-and-when-to-enable-debug-and-what-does-it-do
Here is a similar post with another user with this issue:
January 29, 2012 at 5:26 am in reply to: Customer sale not registering and emails not sending #38054admin
KeymasterIt has always been there.
admin
KeymasterI just did two checkout tests using two different browsers and it went to PayPal fine (the page you mentioned will do the redirection automatically after a few seconds).
admin
KeymasterCan you please do this test and report back:
https://support.tipsandtricks-hq.com/forums/topic/test-to-identy-a-conflicting-theme-or-plugin
admin
KeymasterYeah thats fine.
admin
KeymasterYou should be able hide the input box using CSS. However, that input field is a plain text field (It can’t handle a lot of data). As soon as you put a lot of data it won’t work well.
admin
KeymasterLets do something similar to what we did with qTranslator.
WPML Integration Tweak
1. Open the “wp_eStore1.php” file and find the following block of code:
$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);2. Once you find it, replace it with the following block of code:
function wp_eStore_load_wpml_lang()
{
if(!defined('ICL_LANGUAGE_CODE')){
$language_file = "languages/eng.php";
}
else if (ICL_LANGUAGE_CODE == "en"){
$language_file = "languages/eng.php";
}
else if (ICL_LANGUAGE_CODE == "de"){
$language_file = "languages/ger.php";
}
else if (ICL_LANGUAGE_CODE == "fr"){
$language_file = "languages/fr.php";
}
include_once($language_file);
}
add_action('plugins_loaded', 'wp_eStore_load_wpml_lang');Let me know how that goes. For debugging purpose you can try echoing the value of the “ICL_LANGUAGE_CODE” constant to see if it shows the correct value. eStore will only be able to load a file that is stored inside the “languages” folder (if the file name do not match it won’t load it).
January 29, 2012 at 4:30 am in reply to: Is it possible to allow customers to view their past orders (eStore+eMember) #41336admin
Keymasteradmin
Keymasteradmin
KeymasterUncheck the “Enable Fancy redirection on checkout” settings from eStore then test it out.
admin
KeymasterWe will look into it.
admin
KeymasterYeah it will work.
admin
KeymasterDon’t leave the expiry time field blank. Use a very high number such as 999999 to handle this (this will cover more than 100 or so years).
January 28, 2012 at 5:38 am in reply to: Question about Product Specific Instructions for Buyer #41326admin
KeymasterThe product specific instruction link is not a HTML field but you will be able to share links just by entering the plain link like the following in that field:
Some Product - http://www.expample.com/some-product-landing-page?aff_id=bla
January 28, 2012 at 5:07 am in reply to: free download lets you enter same email multiple times #41323admin
KeymasterSqueeze forms always let you download the items multiple times (the user could have lost the download). Its a free download so it is always best to let them download it than to block it. The autoresponder signup will happen only once. Also the email address will only be added to the record once.
-
AuthorPosts