Forum Replies Created
-
AuthorPosts
-
GWsladeMember
I have a few questions:
Would it be possible to add a “Date” version of customer input. Basically if you ask the customer to enter a date, 9 times out of 10 they enter it wrong, well maybe that is putting down the accuracy of customers a little too much, but they have an unending capacity to make mistakes. A date popup selector would stop that when we need date information.
GWsladeMemberHAs Payment with Amazon been added yet? I see this thread is over a year old. But I do not see Amazon as one of my payment Gateways and I do have the payment gateway bundle.
GWsladeMemberYou can see the problem on this page. This is a site in the process of being set up.
[http://discountussim.com/usa-carriers/]
GWsladeMemberI have purchased the Multi Currency option, and it seems to work, but it is not doing any conversion. I presume there is a location to set the currency rate exchange. Where is that.
GWsladeMemberThis is not the case for our products. Subscriptions typically last between 1 and 6 months. And we have 4 products with subscriptions, and we will be adding more. So to cover it the way you suggest we will need to add 20 additional products, one for each product and subscription length. (We want to avoid the complications of having the customer cancel the subscription) This would just create a very messy subscription page.
I guess I will need to look at a different solution.
GWsladeMemberIs there a demo site, I can see this in action? It looks like what I need, but I want to make sure. I use Authorize.net and PayPal. (Actually Authorize.net now supports CDN funds, but I am not sure I can switch back and forth between CDN and USD.) I would like to see how it displays PayPal in one currency and Authorize.net in another.
August 16, 2013 at 7:54 pm in reply to: eStore – Receipt Creator: Data content of PDF receipts #56201GWsladeMemberAlso, is there a way to trigger creation of a new receipt, without executing a new order, to recreate the receipt with a new PDF template.
August 16, 2013 at 7:39 pm in reply to: eStore – Receipt Creator: Data content of PDF receipts #56200GWsladeMemberIn the “create-receipt-pdf.php” file. the customer address information is collected in one line, with the following;
$cust_address = $cust_details;
I would like to retain the <CR> that seem to be in the text that format the address for mailing.
How would I do that?
GWsladeMemberI see in the documentation the multi-currency add on will change the display in the shopping cart, will it change the payment currency in PayPal and Authorize.net or other payment gateways.
PayPal would be easy, it is already set up for multi currency payments, but other Gateways are not so international.
I have a similar issue to the person who started this thread. I sell internationally and I want my customers to feel comfortable. I was considering setting up subdomains and installing a different version of wp-eStore in each subdomain with a localized set up, and using localized content tags to change the URL text link for add to cart based on the country the customer is coming from, then having different available gateways by country. This addon would be so much simpler, but I think I would need to disable Authorize.net for international orders.
Because my ordering process is rather complex and has price changes based on relationships between variations, plus has multiple customer input items so I use a custom Javascript order entry form and the URL text link with add to cart to add products to the cart and send the customer to the checkout. I also use the Serial PIN issuing aspect of wp-eStore so having all in one cart would be easier.
Any advice.
GWsladeMemberThis is great, Thank you very much.
August 13, 2013 at 7:20 pm in reply to: eStore – Receipt Creator: Data content of PDF receipts #56199GWsladeMemberThank you very much.
GWsladeMemberOn the forth post in this thread Admin states:
We don’t have an option to create text links for auth.net buy now button yet.
This was quite a while ago. Is there an option to use the text link with Authorize.net with the payment gateway bundle yet.
August 12, 2013 at 9:40 pm in reply to: eStore – Receipt Creator: Data content of PDF receipts #56197GWsladeMemberI would like to edit the format of the PDF so I could use the receipt and mail it out in a /10 window envelope. So please answer, which PHP file in the receipt creator plugin I can edit.
GWsladeMemberIs there a way to alter price based on the variation with a text link.
So as seen above I would suggest something like.
Examples:
Text link for “Red” variation, lets say red increases price by $10
[http://www.domain.com/?wp_eStore_buy_now=4&variation1=Red:10]
Text link for “Red” as variation1 and “Large” as variation2 which does not change price.
[http://www.domain.com/?wp_eStore_buy_now=4&variation1=Red:10&variation2=Large]
Or the Red Variable gets price change from variable in the product table.
August 6, 2013 at 9:35 pm in reply to: eStore – How to Use a Text Link or URL to Accommodate the Purchase of a Product #45578GWsladeMemberThis feature is fantastic. I use it in a small Java Script that recommends a product for my users.
I have a small form that gathers information on the users needs, Then when the user submits the form it executes the script which looks at the variables and makes a recommendation.
Then on the recommendation screen there is an add to cart button which executes the text link add to cart.
Currently in the script the following variables are set to specific products recommended
EG:
var planurl = “http://ussim.ca/?wp_eStore_add_to_cart=10”
This is the URL with the text link to a specific product.
Then
BuyURL = ‘”‘ + planurl + ‘”, “_parent”‘
This is to set the string for window.open to open in parent window, or could use _self for current page.
Then when the add to cart button is clicked, it executes the function OpenURL
function OpenURL()
{
window.open(BuyURL);
}
This will open the Checkout and place an item in the cart.
The next step I would like to do is have the java tool recommend two products (I can’t use the bundle, because one product has a serial number being issued, I think) The other product needs variables passed. Which may alter the price.
So I could pass the customer input variables by making the planurl this
“http://ussim.ca/?wp_eStore_add_to_cart=20&c_input=make:HTC, Carrier:Rogers,IMEI:123456789”
But how could I;
Pass the price change.
Pass two add to carts with only one redirects.
-
AuthorPosts