Listing all available credit card details CS Cart - cs-cart

I want to show all the available credit cards by making an API call and showing them at the checkout process using the dropdown. How can I achieve this using CS-Cart?
Checkout With Card

I know fondy can create this form - http://joxi.ru/Vm69y03C4eLynr
but dont know cs-cart payment addon for this. try search here - https://marketplace.cs-cart.com/payments.html?sl=en

Related

Magento 2: How to add a credit card logo/image before amazon pay button on the checkout page?

I'm trying to add a a credit card logo/image before Amazon Pay button on the checkout page. Please guide me on how do I go about achieving this? screenshot attached
You can do this by simply overriding the .phtml file that displays Amazon Pay button. Look for the template file somewhere under Vendor/Amazon/Payments directory where you will find checkout-button.html.

Magento 2 - Transfer cart items from API to web store

I am creating a complex shopping configurator app that allows a user to customize and visualize a product which consists of multiple store items. Once they confirm their purchase, I iterate and add all of the selected products to a guest cart using the .../rest/V1/guest-carts API endpoint.
I would now like to forward the user to the store checkout to continue the purchasing process from the web store, e.g. https://store.url/checkout/cart. Of course, that basket needs to be populated with the items that were added via the API. I've looked through the documentation but not been able to find
anything relevant but I wonder if I can pass over the store_id or the quote_id and the relevant products be inserted accordingly?
Not sure if this is still relevant for you but, I was also working on a similar problem and came across this plugin for Magento 2. Basically what this plugin does is use a customer's token and a quote_id and creates a temporary session on the Magento2 Store and then redirect the user to the checkout page. This was a starting point for me, as I had to customize this plugin further to suit my requirements.
Hope this helps.

Adding 'terms and conditions' to Infusionsoft shopping cart

I want to get SagePay on my company's Infusionsoft shop. But, SagePay ask for a checkbox on the checkout to confirm that customers have read the terms and conditions. Totally understandable - but Infusionsoft do not support this option by default.
I am not using the API. Does anyone know a way, perhaps with Javascript, that I could create such an option and NOT let customers proceed to checkout without clicking 'accept'?
Thanks in advance,
Nicole
You should be able to add an onclick listener for the checkout button using something like this:
document.getElementById("idOfButton").onclick = function(e) {
//Look at value of checkbox
//If checked, don't do anything
//else e.stopPropagation
}
In your shopping cart theme you should be able to paste in html for the checkbox.

Magento Hooks - Will Magento allow me to do this?

I'm going to be starting a E-Commerce project and the client is interested in using Magento. In this project, when a customer adds something to the cart, I'll need to pull them out of the flow, where they'll proceed through a custom wizard-esque area.
They basically design a document using a drag and drop interface. After they finish, that document will be saved as a PDF, and I want them redirected to checkout
So my questions are
Does Magento have hooks available for after an item is added to the
cart ?
If I pull them away to this other section of the site (Wizard
portion), changes they make will potentially add costs to
their cart. Would I still have access to products, prices, and the
cart so that I can continue to modify their cart until they return
to checkout ?
Magento users Event-Observer pattern, where you can hook into virtually any action which is performed and execute your custom code,
Refer to below links,
http://inchoo.net/category/ecommerce/magento/events-observers/
https://gist.github.com/peterjaap/6973324
http://huztechbuzz.wordpress.com/2014/04/26/complete-list-of-all-events-in-magento/
http://www.nicksays.co.uk/magento-events-cheat-sheet-1-7/
So you have to figure out which event you can use and plugin your custom code.
As long as i remember all the cart info ( products/prices ) is stored in the $_SESSION. So you can get all the information from there you need, modify it via your so-called wizzard and udpate the session information after that!
Cheers! :)

How to use magento's native captcha for product review page and contact us form

In magento 1.7.0.2, a default captcha is available as out-of-box for only some forms like login, registration, checkout as guest only. But I want to use the same captcha for product review form also.
I have seen an extension which adds captcha for product review page, But it looks different from native captcha. If there are different no.of captcha's in one site, it doesnt looks good. So only I would like to add the native captcha for product review page and contact us page
Install the Product Review Captcha:
http://www.magentocommerce.com/magento-connect/7741.html
If you want to use only one type of captcha, you can install the free Fontis Recaptcha.
http://www.magentocommerce.com/magento-connect/fontis-recaptcha.html
Digital Pianism has developped an extension that implements the native Magento captcha on product review forms if you still need it.
You can find it here for now: https://www.magentocommerce.com/magento-connect/catalog/product/view/id/30268/
If the link dies, just google it ;)

Resources