Forum Replies Created
-
AuthorPosts
-
November 14, 2013 at 6:35 pm in reply to: eStore – Showing Buy Now and Add to Cart buttons within the same product #58903rgranzotiMember
Most of my users just want to click on Buy Now, and be taken to Paypal’s checkout page, but I’m having business visitors that need to purchase more than one report at a time, and having to checkout several times is bugging them (understandably so).
That’s why I thought it would be great if they could be able to add the report to a cart and check out once they’re done. I think that using two product shortcodes with their descriptions would create more distraction than necessary. I’m currently using [wp_eStore_fancy_display id=xx type=2 style=2].
rgranzotiMemberI am trying to get eStore integrated with WPML as well, however I was not able to find the aforementioned block of code:
$lang = $emember_config->getValue(‘eMember_language’);
if (!empty($lang))$eMember_language_file = “lang/”.$lang.”.php”;
else $eMember_language_file = “lang/eng.php”;
include_once($eMember_language_file);
I was able to find this, however:
$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);
At any rate, an error message came up. I tried using i18n too, btw, without luck. Base language is pt-br (brazilian portuguese), and I would like to be able to sell products in English in the near future. Currently I have eng.php translated into pt-br and just use that.
How should I proceed? Thank you bunches!
-
AuthorPosts