I need one page checkout steps as
Checkout Method
Billing Information
Shipping Information
Shipping Method
Order Review
Payment Information
By default order is
Checkout Method
Billing Information
Shipping Information
Shipping Method
Payment Information
Order Review
I do not want to touch core files. I can do easily with that, but it is safe not to touch core file.
Any Idea
Many Thanks
Don't modify the core files, instead just try to override the onepage checkout. To override one page checkout, you can check this link.
http://www.magentocommerce.com/boards/viewthread/34256/
http://www.magentocommerce.com/wiki/5_-_modules_and_development/checkout/customizing_onepage_checkout_-_remove_shipping_method
Related
hello i was following a tutorial on a javascript mastery video on creating an ecommerce web shop everything was ok it uses stripe for payment but i dont want to use online payment i want to use payment on delivery but the customers should receive order summary via email after placing order
this is the link to the github project i want to modify if someone can help me modify or modify it for me and push it to github i will apreciate to download and review how it was archived am new to react https://github.com/adrianhajdin/project_e_commerce
you need backend to store users and orders, then it will be easy to send mail with order summary after user placing order.
I want to add the Shipping and Billing addresses form in the cart.liquid file so it is possible to add these two addresses form in cart page if anybody known then give solution for this.
No. It is not possible. Shipping and Billing address are collected in Checkout step, not the cart step.
It is not possible as of now. Soon after user clicks on checkout button, they are redirected to shopify's checkout system. that is https://checkout.shopify.com.
You would not have any option to send your address data from cart page to checkout page.
I am trying to create a website that will allow people to post items for sale and then receive a payment through paypal once the item is purchased. Ideally I would have them link their paypal account to my website, before they post any items, and user would checkout via paypal. This would be a very similar setup to what ebay has with paypal. Can someone point me to what type of integration this is? Also could someone point me to the proper docs? I don't think i'm using the correct terminology so I'm not finding anything. I am a developer so i'm not afraid to code this up. Thanks
If you want to create this kind of integration you will need to make a few user experience decisions first. The flow of Ebay allows a person to link a payment method to their system and upon purchase directs them to an Ebay paypal checkout page that acts as a payment using stored credentials to do a transaction with the Ebay paypal account. Internally Ebay then performs other transactions from their account with other user's registered payment information to mediate the exchange. It is not directly user-to-user. The first question you as a developer need to answer is : Do you want to use the pre-built paypal experience or design your own with paypal integration?
The simplest pre-built experience causes your users to be directed away from your website to paypal where they handle their transactions and then are returned to your site along with a REST payload that informs your site whether a transaction was successful or not.
Another service offered by paypal is called Paypal Payment Advance which allows them to provide you with a template integration on your website which performs the transactions on your domain. To learn more about that, see here.
The custom experience requires you to learn the Paypal developer API and how Paypal operates and stores credentials which can be found here. This option is only if you really want to have complete control of everything and are willing to put in the work. It is also the most difficult option, but gives you the greatest control over the end experience.
Does SimpleCart supports paypal express checkout ?
I need to get shipping address from customers which is not supported in standard checkout by paypal.Please suggest any way of doing that without involving backend.
Yes it is possible to use simpleCart for paypal express checkout with their sendform but it requires back end coding. You can send the post data from the cart and use it for express checkout.
Typically you are able to get shipping address from customers with standard checkout. Whenever I have had someone checkout using standard it has always just included their shipping address in the PayPal transaction details.
Is it possible to send shipping address to Paypal Standard?
how can I limit my coupon so a customer won't be able to use multiple coupon on the same checkout?
I'm using WP Woocommerce 4.2.2
You can do this by activating the option Individual use only, at the coupon editing form. This will block the use of additional coupons.
For more information check the official documentation.