I have products with individual landing pages. I want the landing pages to contain everything needed to checkout with that product. This includes a dropdown to select the quantity of the product desired, shipping information and billing information. Is this possible? In default Magento, you can't get to the checkout process without first having an item in the cart.
Default Magento allows you to choose where to redirect after a product is added to cart: to the cart overview or back to the page where the "Add to Cart" button was clicked. Using a similar approach you can create an extension that overrides the 'addAction' method of the cart controller to redirect to the checkout page immediately after a product is added to cart.
You can't go to checkout with an empty shopping cart, but redirecting after the add to cart action allows customers to skip the cart page, if that is what you intend to achieve.
It is also possible to use the billing and shipping information the customer submits in the landing page for the checkout - your extension will have to validate it and save into the quote object as if it was submitted in the respective checkout steps.
Developing such an extension would not be a simple task - checkout is a very sensitive matter.
Related
Currently when a customer enters a coupon code, they are sent to the checkout page with a url such as www.example.com/shop/index.php?route=checkout/checkout. How can I add the coupon code and product id to the url so that I can send the link to a customer and they can simply fill out the checkout page with the coupon already applied without going through the product page and cart?
Is there any way to move Paypal button to checkout page, anyone can help with this?
Each payment method has a field named Sort Order. Starting at one, place a number in each enabled payment method, save and they should appear in the cart payment section in the order you entered.
System => Configuration => Sales => Payment Methods
for more help, check here
Paypal express checkout button is on cart page.
Paypal standard module if used will show Paypal button on checkout page.
So suggestion is that you enable paypal standard.
How can we add configuration option on cart page in magento and update it automatically , including price change, when selected option get change.
I want to know how can we update price and whole cart on selecting configurable options on cart page itself.
Is there any extension or we can do using core coding?
refer cart for configurable product in this site http://www.wehkamp.nl/Winkelmand/Winkelmand.aspx
I have 3 products on my site. Two of them can be added to cart just fine. The third one, when clicking add to cart, redirects back to the product page without adding the product to the cart. The other two, when clicked, directs to the cart page, showing the item in the cart. I'm baffled. Where should I look to fix this?
Found my solution. In the product configuration, in the tab dealing with downloadable things, I had to set the drop down for "allow to be bought separately" to No instead of Yes
I'm working on a project where the site only provides "Free Shipping".
I'n my standard page (NOT one page checkout), after coming from Paypal, customers still need to see the "Review Order" page. This page is unnecessary because we only have free shipping.
Is there a way to remove this page?
Thanks