customized checkout option in Opencart - php

Opencart payment methods are not supported to me, I have to build it in my own way. How do i customized it ? I don't have any idea of that. please someone can give me references it's fine. I trying to find. but still I could not find anything. Just want edit checkout and form submit to my own page with all the details that have in checkout .

the best reference to study is PayPal opencart payment option MVC or build with this reference EBS payment gateway its free extension study it also

Related

Unable to switch subscription plan in Woocommerce with AJAX Add to cart option enabled

So I am using Woocommerce subscriptions plugin along with an AJAX side cart plugin. I don't face any issue when adding subscription product to cart for the first purchase. It's only when the customer decides to switch their subscription plan that all the discrepancies occur. The product is not being added to cart. It doesn't matter whether the AJAX call is made by the plugin or by woocommerce, the product is not getting added to cart.
I might have found the cause for it in this thread but I'm not 100% sure if the solution would actually work, so if anyone can guide a little noob out here, it would be of great help.
On a side note, I have posted another question on this site, asking for a more specific solution to this exact same problem. If someone would answer that question rather than this one, they're more than welcome.
Thanks in advance.

Woocommerce payment gateway request

In which php script in woocommerce do I add my payment gateway request code? I was told to put it in checkout page where ORDER NOW button exists. But am unable to find the exact PHP..Please help me find the exact php script.
Don't modify WooCommerce core directly.
You should use the actions and filters to extend WooCommerce's functionality.
Please refter to https://docs.woocommerce.com/document/payment-gateway-api/ for some examples.

Add onepage checkout to custom page

I'm messing around with magento and I'm having trouble figuring out how to add the same content from magento onepage checkout to my custom module page.
I DO NOT wish to override original checkout page, just create similar one on my own page.
I already managed to create a controller which extends the OnepageController and redirects me to my custom page.
All advice is welcome!
Thank you in advance ;)
Well recreating the onepage checkout is a long process. But the information you would want to know is this that all the template files for onepage checkout is under template/checkout/ and the layout file for it is in layout/checkout.xml.
If you would like to know what is going under the hood for the onepage checkout read this article it will help you understand what exactly magento is doing for the onepage checkout. Check this article out
http://inchoo.net/ecommerce/magento/magentos-onepage-checkout-in-a-nutshell/ .
If any more queries update it here, I will try to give you an answer as best I can.

how to integrate payment gateway with website created in wordpress?

I want to integrate a payment gateway with Soho Hotel Theme using wordpress.
How can I achieve this?
You would likely want to integrate it as a WordPress plugin: http://codex.wordpress.org/Writing_a_Plugin This way you're extending the functionality without modifying the core. You could also potentially create custom page templates in your theme to integrate the gateway.
That said, the gateway is only part of the equation. Generally there's a cart or at least a purchase button on a page to place an order. Any third party cart should already have options to use gateways thus negating the need for you to build your own gateway integration. You need something that will collect the data and submit it to the gateway. If you haven't already solved that portion of the equation, solve that first.
If you're starting off with an e-commerce plugin like WooCommerce - they have an API that you can use to get started. Thanks!

Symfony Friendly Shopping Cart

What options exist for a simple shopping cart system on Symfony? I'm looking for something that will:
Provide an interface for tracking items to purchase.
Provide shopping cart actions and templates (checkout, view cart, etc.)
Support Paypal.
Support coupon codes.
Every Symfony specific solution I've found (sfShop, symfony-ecommerce, sfShoppingCart) is out-of-date and not maintained for 1.4. Are there any other Symfony specific solutions?
If there's nothing Symfony specific, what more general systems integrate cleanly with Symfony? I'm looking for something simple. I don't need complete ecommerce solutions that provide a store, keep track of items/inventory etc. as this is only for a small, paid registration portion of a larger site.
There are no cart systems out there that work properly for 1.4 at the time being.
I am currently finishing up a cart system that does exactly what you are looking for. If you are planning on going the custom route, I may be able to help you along the way.
Good luck.
Update
I ended up creating a shopping cart plugin for symfony 1.4 and posted it open source at the symfony plugin repository.
You can get more information here.
Frontend Demo here.
Backend Demo here.
It is intended to be used by developers who are looking to build an e-commerce solution with symfony.
Also made available on Git as requested.

Categories