i need WordPress shopping cart function with or without any pluggins. When a registered user click the add to cart button on the normal post, it needs to go to shopping cart. The checkout function should not have the shipping and payment gateways as the user click the check out button he should recieve the mail for order confirmation with the permalinks of the post bought by him, meanwhile the post permalinks has to be saved in data base which can be viewed by the user later. Admin should recieve the mail for perchasing order.
Perhaps you can use this plugin. Its a wordpress e commerce plugin and should take care of all the things you have mentioned.
Salman, Try WP e-Commerce one of my favorite and o.s plugin
For more http://sixrevisions.com/wordpress/top-5-excellent-e-commerce-plugins-for-wordpress/
If you really need a simple cart other than Wordpress integrated plugin, you can go for OpenCart, which was easily administrate and user friendly with analytics and so on...
Please see my answer to similar question here.
In addition - the WP Order Cart plugin does not save orders to database, it only sends the order email to both buyer and seller - this functionality is still in development.
Related
I am adding drop ship locations to woocommerce checkout. I was able to add wp store locator plugin to the checkout page. I don't know how to make the selected store details to populate the shipping address in checkout page. I am new to editing wordpress using php. Please explain in detail
Try using the Local Pickup Plus plugin. With this plugin, the user can select a store location from the Cart / Checkout page. You can then adjust the verbiage on these pages to replace Pickup with Drop Shipping. Not the perfect solution and might not work in your situation but as a non-coder it may be worth a try.
I have developed a system to create orders programmatically in woocommerce. However when a customer clicks on the link to go to their payment page it does not show the 'Have a Coupon' input box. I haven't adjusted any of the templates.
Any ideas on how I can get the coupon input box to appear on the customer payment page?
Location I am talking about is:
<mywebsite>/checkout/order-pay/<order_id>/?pay_for_order=true&key=<order_key>
Thank you for any help with this, I am struggling with it
Payment page is an endpoint, so must apply coupon before it reaches this point
Actually I am using Woo Commerce Subscription Plugin.
I need that when any user will come our website to purchase anything then he must have option to pay manually or automatically for the simple subscription product.
If you need to integrate on front end then you must need to do the editing as per your requirement.
But if you need to know how to make subscription option like manually or automatically on front end by doing the customization you just need to check the below link.
https://support.woothemes.com/hc/en-us/articles/203159667-Change-a-Subscription-from-Automatic-to-Manual-Payments
Thanks
I wish to use paypal to create a shop to an existing site, however I have reached a problem.
Paypal has a facility to 'add to cart' however when clicked on, it goes to their servers.The check out has no customisability what so ever, so looks completely out of sync with my site.
Is it possible to create a shopping cart on PayPal showing the list of items on MY site (so I can customise the look and feel of the shopping cart) and then only when the payment needs to be made, the user is sent to the PayPal Site.
Thanks
NOTE: I'm using pure HTML,CSS & PHP. I am not using a CMS such as WordPress.
Also when I mean I want to customise the look and feel of the shopping cart, I don't mean just the button, but the way the items is shown up along with details such as Qty.
If you're working with basic PHP code that you built on your own (no framework like WP) then you'll need to build your own shopping cart.
If you were to use WP, though, you could use WooCommerce which is a great shopping cart system and would probably save you lots of time.
I am building a custom front end to Magento, where users selects the products they want to purchase outside of Magento. But then use Magento for the rest.
I already use the product api's to pull the product_id/sku/name/price out. So I have a list of product_id’s ready for purchase.
I will use the api's for creating and building a shopping cart.
My question is…
Once I populate a shopping cart using the apis and have the shoppingcart_id, how do I redirect the user directly into that shopping cart page in Magento?
Thanks for any help or suggestions.
Redirecting is easy. This is how you can do it in Magento 1.5. Note that you need to be running within a controller action in order for this to work properly.
$this->_redirect('checkout/cart');
If you want to direct the user to the checkout page, try something like the following:
$this->_redirect('checkout/onepage/');
Hope this helps!