SlideShare a Scribd company logo
E-commerce customization
Petr Vozak, Technical Leader
E-commerce customization
Agenda
1) Using custom e-commerce providers
2) Developing custom dialog for the checkout process
3) Developing custom payment gateway
E-commerce customization
1) Using custom e-commerce providers
Using custom e-commerce providers
How doest it work?
Using custom e-commerce providers
• Assembly: CMS.Ecommerce
• Namespace: CMS.Ecommerce
• Provider: ShippingOptionInfoProvider
• Method: CalculateShipping(…)
public static double CalculateShipping(ShoppingCartInfo cartObj, string siteName)
{
if (ECommerceHelper.UseCustomHandlers())
{
return ECommerceHelper.GetShippingOptionInfoProvider().CalculateShipping(cartObj, siteName);
}
else
{
return CMS.CMSEcommerce.ShippingOptionInfoProvider.CalculateShipping(cartObj, siteName);
}
}
Are custom e-commerce providers enabled?
YES → Run custom code
NO → Run Kentico code
Wrapper
Using custom e-commerce providers
• Assembly: CMS.Ecommerce
• Namespace: CMS.CMSEcommerce
• Provider: ShippingOptionInfoProvider
• Method: CalculateShipping(…)
public static double CalculateShipping(ShoppingCartInfo cartObj, string siteName)
{
// if shipping free limit is reached -> return zero (shipping is free)
// else -> return shipping option value
}
Here is Kentico logic for
shipping calculation,
something like:
Kentico code
Using custom e-commerce providers
• Assembly: CMS.CustomECommerceProvider
• Namespace: CMS.CustomECommerceProvider
• Provider: CustomShippingOptionInfoProvider
• Method: CalculateShipping(…)
public double CalculateShipping(object cartObj, string siteName)
{
return CMS.CMSEcommerce.ShippingOptionInfoProvider.CalculateShipping(
(CMS.Ecommerce.ShoppingCartInfo)cartObj, siteName);
}
Kentico method is called by default
Custom code
Using custom e-commerce providers
1) Open Visual Studio and add CustomECommerceProvider
project from code samples to your CMS solution
2) Modify code of the custom e-commerce providers to
reach your requirements
3) Add the following key to your web.config file to enable
custom e-commerce providers:
<add key=“CMSUseCustomEcommerceProviders” value=“true”>
Using custom e-commerce providers
DEMO
1) How to customize shipping calculation
– customize CalculateShipping()
2) How to automatically set some credit to a new customer
– Customize SetCustomerInfo()
E-commerce customization
2) Developing custom dialog for the checkout process
Developing custom dialog for the checkout process
Developing custom dialog for the checkout process
DEMO
1) Create checkout process step user control (*.ascx)
• inherit from ShoppingCartStep
• override bool IsValid()
• override bool ProcessStep()
2) Register checkout process step
E-commerce customization
3) Developing custom payment gateway
Developing custom payment gateway
Developing custom payment gateway
DEMO
1) Create payment gateway form
• inherit from CMSPaymentGatewayForm
• override bool ValidateData()
• override bool ProcessData()
2) Create payment gateway provider
• inherit from CMSPaymentGatewayProvider
• override void GetPaymentDataForm()
• override bool ProcessPayment()
3) Register payment gateway
E-commerce customization
Summary
1) Using custom e-commerce providers
2) Developing custom dialog for the checkout process
3) Developing custom payment gateway

More Related Content

What's hot

Mobile commerce ppt
Mobile commerce pptMobile commerce ppt
Mobile commerce ppt
Tapesh Chalisgaonkar
 
Electronic payment system
Electronic payment systemElectronic payment system
Electronic payment system
pankhadi
 
Electronic Payment Systems in E Commerce
Electronic Payment Systems in E CommerceElectronic Payment Systems in E Commerce
Electronic Payment Systems in E Commerce
Vinay Chaithanya
 
E commerce (edi)
E commerce (edi)E commerce (edi)
E commerce (edi)
Arnav Chowdhury
 
e payment system ppt
e payment system ppte payment system ppt
e payment system ppt
minisharma35
 
E business.ppt
E business.pptE business.ppt
E business.ppt
fatimahAlkreem
 
Chapter 8 / Electronic Payment
Chapter 8 / Electronic  PaymentChapter 8 / Electronic  Payment
Chapter 8 / Electronic Payment
Eyad Almasri
 
E-money
E-moneyE-money
E-money
Zakaria Hasan
 
Electronic payment System
Electronic payment SystemElectronic payment System
Electronic payment System
Mohammad Waqas
 
Network security for E-Commerce
Network security for E-CommerceNetwork security for E-Commerce
Network security for E-Commerce
Hem Pokhrel
 
Introduction to e commerce
Introduction to e commerceIntroduction to e commerce
Introduction to e commerce
Utomo Prawiro
 
Electronic cheque
Electronic chequeElectronic cheque
Electronic cheque
Emmanual Jose
 
6. electronic payment systems
6. electronic payment systems6. electronic payment systems
6. electronic payment systems
Pratap Tirkey
 
E procurement
E procurementE procurement
E procurement
Raghav Jha
 
Electronic payment system(EPS)
Electronic payment system(EPS)Electronic payment system(EPS)
Electronic payment system(EPS)
rahul kundu
 
Payment Gateway
Payment GatewayPayment Gateway
Payment Gateway
Nyros Technologies
 
Types of E-Commerce
Types of E-CommerceTypes of E-Commerce
Types of E-Commerce
RajaKrishnan M
 
Security Threats in E-Commerce
Security Threats in E-CommerceSecurity Threats in E-Commerce
Security Threats in E-Commerce
Dattatreya Reddy Peram
 
Online Payment Gateway System
Online Payment Gateway SystemOnline Payment Gateway System
Online Payment Gateway System
Mannu Khani
 
Objectives of the it act.docx
Objectives of the it act.docxObjectives of the it act.docx
Objectives of the it act.docx
Dr. Arun Verma
 

What's hot (20)

Mobile commerce ppt
Mobile commerce pptMobile commerce ppt
Mobile commerce ppt
 
Electronic payment system
Electronic payment systemElectronic payment system
Electronic payment system
 
Electronic Payment Systems in E Commerce
Electronic Payment Systems in E CommerceElectronic Payment Systems in E Commerce
Electronic Payment Systems in E Commerce
 
E commerce (edi)
E commerce (edi)E commerce (edi)
E commerce (edi)
 
e payment system ppt
e payment system ppte payment system ppt
e payment system ppt
 
E business.ppt
E business.pptE business.ppt
E business.ppt
 
Chapter 8 / Electronic Payment
Chapter 8 / Electronic  PaymentChapter 8 / Electronic  Payment
Chapter 8 / Electronic Payment
 
E-money
E-moneyE-money
E-money
 
Electronic payment System
Electronic payment SystemElectronic payment System
Electronic payment System
 
Network security for E-Commerce
Network security for E-CommerceNetwork security for E-Commerce
Network security for E-Commerce
 
Introduction to e commerce
Introduction to e commerceIntroduction to e commerce
Introduction to e commerce
 
Electronic cheque
Electronic chequeElectronic cheque
Electronic cheque
 
6. electronic payment systems
6. electronic payment systems6. electronic payment systems
6. electronic payment systems
 
E procurement
E procurementE procurement
E procurement
 
Electronic payment system(EPS)
Electronic payment system(EPS)Electronic payment system(EPS)
Electronic payment system(EPS)
 
Payment Gateway
Payment GatewayPayment Gateway
Payment Gateway
 
Types of E-Commerce
Types of E-CommerceTypes of E-Commerce
Types of E-Commerce
 
Security Threats in E-Commerce
Security Threats in E-CommerceSecurity Threats in E-Commerce
Security Threats in E-Commerce
 
Online Payment Gateway System
Online Payment Gateway SystemOnline Payment Gateway System
Online Payment Gateway System
 
Objectives of the it act.docx
Objectives of the it act.docxObjectives of the it act.docx
Objectives of the it act.docx
 

Viewers also liked

User experience issues -- Personalization vs. Customization
User experience issues -- Personalization vs. CustomizationUser experience issues -- Personalization vs. Customization
User experience issues -- Personalization vs. Customization
Vinay Mohanty
 
2011 Valentine's Day Gift Guide
2011 Valentine's Day Gift Guide2011 Valentine's Day Gift Guide
2011 Valentine's Day Gift Guide
chocri
 
Next Advancements in Clienteling with Microsites
Next Advancements in Clienteling with MicrositesNext Advancements in Clienteling with Microsites
Next Advancements in Clienteling with Microsites
enVista
 
Microsites What Are They & What Do They Do...Really? Digital Dealer 10
Microsites What Are They & What Do They Do...Really? Digital Dealer 10 Microsites What Are They & What Do They Do...Really? Digital Dealer 10
Microsites What Are They & What Do They Do...Really? Digital Dealer 10
Naked Lime Marketing
 
Microsites Targeting Niched Audiences
Microsites Targeting Niched AudiencesMicrosites Targeting Niched Audiences
Microsites Targeting Niched Audiences
K-Kom Marketing
 
Snapple_PlansBook_NSAC16
Snapple_PlansBook_NSAC16Snapple_PlansBook_NSAC16
Snapple_PlansBook_NSAC16
Stacey Roth
 
Best Practices for Microsites
Best Practices for MicrositesBest Practices for Microsites
Best Practices for Microsites
Clarity Quest Marketing
 
Website evaluation checklist
Website evaluation checklistWebsite evaluation checklist
Website evaluation checklist
weigansm
 
Microsites Tested: Recent experiments reveal 2 common design mistakes that c...
Microsites Tested:  Recent experiments reveal 2 common design mistakes that c...Microsites Tested:  Recent experiments reveal 2 common design mistakes that c...
Microsites Tested: Recent experiments reveal 2 common design mistakes that c...
MarketingExperiments
 
Website Evaluation Form
Website Evaluation FormWebsite Evaluation Form
Website Evaluation Form
Franklin Middle School
 
Ducati Case Study
Ducati Case StudyDucati Case Study
Ducati hbr case analysis
Ducati hbr  case analysisDucati hbr  case analysis
Ducati hbr case analysis
Sandeep_Srivastava
 
Ikea service strategy
Ikea service strategyIkea service strategy
Ikea service strategy
Sulakkhana Nirmanee
 
E-marketplace
E-marketplaceE-marketplace
E-marketplace
Andrey Andoko
 
"The performance begins long before the show starts"-a presentation for Globe...
"The performance begins long before the show starts"-a presentation for Globe..."The performance begins long before the show starts"-a presentation for Globe...
"The performance begins long before the show starts"-a presentation for Globe...
Jeph Maystruck
 
First Preston social talk
First Preston social talkFirst Preston social talk
First Preston social talk
JosephStash
 
[사회적기업가포럼]빅워크 발표자료
[사회적기업가포럼]빅워크 발표자료[사회적기업가포럼]빅워크 발표자료
[사회적기업가포럼]빅워크 발표자료
Hwajun Song
 
Case Study
Case StudyCase Study
Case Study
Prezen
 
Your 2011 Marketing Plan
Your 2011 Marketing PlanYour 2011 Marketing Plan
Your 2011 Marketing Plan
Jeph Maystruck
 
Catalogo
CatalogoCatalogo
Catalogo
FIMEE
 

Viewers also liked (20)

User experience issues -- Personalization vs. Customization
User experience issues -- Personalization vs. CustomizationUser experience issues -- Personalization vs. Customization
User experience issues -- Personalization vs. Customization
 
2011 Valentine's Day Gift Guide
2011 Valentine's Day Gift Guide2011 Valentine's Day Gift Guide
2011 Valentine's Day Gift Guide
 
Next Advancements in Clienteling with Microsites
Next Advancements in Clienteling with MicrositesNext Advancements in Clienteling with Microsites
Next Advancements in Clienteling with Microsites
 
Microsites What Are They & What Do They Do...Really? Digital Dealer 10
Microsites What Are They & What Do They Do...Really? Digital Dealer 10 Microsites What Are They & What Do They Do...Really? Digital Dealer 10
Microsites What Are They & What Do They Do...Really? Digital Dealer 10
 
Microsites Targeting Niched Audiences
Microsites Targeting Niched AudiencesMicrosites Targeting Niched Audiences
Microsites Targeting Niched Audiences
 
Snapple_PlansBook_NSAC16
Snapple_PlansBook_NSAC16Snapple_PlansBook_NSAC16
Snapple_PlansBook_NSAC16
 
Best Practices for Microsites
Best Practices for MicrositesBest Practices for Microsites
Best Practices for Microsites
 
Website evaluation checklist
Website evaluation checklistWebsite evaluation checklist
Website evaluation checklist
 
Microsites Tested: Recent experiments reveal 2 common design mistakes that c...
Microsites Tested:  Recent experiments reveal 2 common design mistakes that c...Microsites Tested:  Recent experiments reveal 2 common design mistakes that c...
Microsites Tested: Recent experiments reveal 2 common design mistakes that c...
 
Website Evaluation Form
Website Evaluation FormWebsite Evaluation Form
Website Evaluation Form
 
Ducati Case Study
Ducati Case StudyDucati Case Study
Ducati Case Study
 
Ducati hbr case analysis
Ducati hbr  case analysisDucati hbr  case analysis
Ducati hbr case analysis
 
Ikea service strategy
Ikea service strategyIkea service strategy
Ikea service strategy
 
E-marketplace
E-marketplaceE-marketplace
E-marketplace
 
"The performance begins long before the show starts"-a presentation for Globe...
"The performance begins long before the show starts"-a presentation for Globe..."The performance begins long before the show starts"-a presentation for Globe...
"The performance begins long before the show starts"-a presentation for Globe...
 
First Preston social talk
First Preston social talkFirst Preston social talk
First Preston social talk
 
[사회적기업가포럼]빅워크 발표자료
[사회적기업가포럼]빅워크 발표자료[사회적기업가포럼]빅워크 발표자료
[사회적기업가포럼]빅워크 발표자료
 
Case Study
Case StudyCase Study
Case Study
 
Your 2011 Marketing Plan
Your 2011 Marketing PlanYour 2011 Marketing Plan
Your 2011 Marketing Plan
 
Catalogo
CatalogoCatalogo
Catalogo
 

Similar to E-commerce customization

Marketing Automation with dotCMS
Marketing Automation with dotCMSMarketing Automation with dotCMS
Marketing Automation with dotCMS
Jason Smith
 
Magento Payment & Vault framework
Magento Payment & Vault frameworkMagento Payment & Vault framework
Magento Payment & Vault framework
Yevhen Sentiabov
 
Paytm integration in swift
Paytm integration in swiftPaytm integration in swift
Paytm integration in swift
InnovationM
 
How to implement payment gateway integration for non-credit card on Magento2
How to implement payment gateway integration for non-credit card on Magento2How to implement payment gateway integration for non-credit card on Magento2
How to implement payment gateway integration for non-credit card on Magento2
Hirokazu Nishi
 
The complete ASP.NET (IIS) Tutorial with code example in power point slide show
The complete ASP.NET (IIS) Tutorial with code example in power point slide showThe complete ASP.NET (IIS) Tutorial with code example in power point slide show
The complete ASP.NET (IIS) Tutorial with code example in power point slide show
Subhas Malik
 
Workshop: Building a streaming data platform on AWS
Workshop: Building a streaming data platform on AWSWorkshop: Building a streaming data platform on AWS
Workshop: Building a streaming data platform on AWS
Amazon Web Services
 
WHMCS Order Form Template - One Page Checkout
WHMCS Order Form Template - One Page CheckoutWHMCS Order Form Template - One Page Checkout
WHMCS Order Form Template - One Page Checkout
WHMCS Global Services
 
java and javascript api dev guide
java and javascript api dev guidejava and javascript api dev guide
java and javascript api dev guide
Zenita Smythe
 
Building a Streaming Data Platform on AWS - Workshop
Building a Streaming Data Platform on AWS - WorkshopBuilding a Streaming Data Platform on AWS - Workshop
Building a Streaming Data Platform on AWS - Workshop
Amazon Web Services
 
Cloud Kiosk Service Automation Tool for Microsoft Cloud Solution Providers
Cloud Kiosk Service Automation Tool for Microsoft Cloud Solution ProvidersCloud Kiosk Service Automation Tool for Microsoft Cloud Solution Providers
Cloud Kiosk Service Automation Tool for Microsoft Cloud Solution Providers
Daniel Moore
 
WooCommerce: payment gateways
WooCommerce: payment gatewaysWooCommerce: payment gateways
WooCommerce: payment gateways
Rodolfo Melogli
 
Get Paid presentation_20190123
Get Paid presentation_20190123Get Paid presentation_20190123
Get Paid presentation_20190123
Peter Walker
 
Developing enterprise ecommerce solutions using hybris by Drazen Nikolic - Be...
Developing enterprise ecommerce solutions using hybris by Drazen Nikolic - Be...Developing enterprise ecommerce solutions using hybris by Drazen Nikolic - Be...
Developing enterprise ecommerce solutions using hybris by Drazen Nikolic - Be...
youngculture
 
Cloud Kiosk for Microsoft Cloud Services 0316
Cloud Kiosk for Microsoft Cloud Services 0316Cloud Kiosk for Microsoft Cloud Services 0316
Cloud Kiosk for Microsoft Cloud Services 0316
Gilbert Louis
 
Safex pay wl-pg-presentation
Safex pay wl-pg-presentationSafex pay wl-pg-presentation
Safex pay wl-pg-presentation
Neha Sahay
 
Hyperleger Composer Architecure Deep Dive
Hyperleger Composer Architecure Deep DiveHyperleger Composer Architecure Deep Dive
Hyperleger Composer Architecure Deep Dive
Dan Selman
 
Flamingo Commerce Module Details
Flamingo Commerce Module DetailsFlamingo Commerce Module Details
Flamingo Commerce Module Details
i-love-flamingo
 
Developing enterprise ecommerce solutions using hybris by Drazen Nikolic
Developing enterprise ecommerce solutions using hybris by Drazen NikolicDeveloping enterprise ecommerce solutions using hybris by Drazen Nikolic
Developing enterprise ecommerce solutions using hybris by Drazen Nikolic
youngculture
 
Kerberos Survival Guide: Columbus 2015
Kerberos Survival Guide: Columbus 2015Kerberos Survival Guide: Columbus 2015
Kerberos Survival Guide: Columbus 2015
J.D. Wade
 
Kerberos Survival Guide: SharePointalooza
Kerberos Survival Guide: SharePointaloozaKerberos Survival Guide: SharePointalooza
Kerberos Survival Guide: SharePointalooza
J.D. Wade
 

Similar to E-commerce customization (20)

Marketing Automation with dotCMS
Marketing Automation with dotCMSMarketing Automation with dotCMS
Marketing Automation with dotCMS
 
Magento Payment & Vault framework
Magento Payment & Vault frameworkMagento Payment & Vault framework
Magento Payment & Vault framework
 
Paytm integration in swift
Paytm integration in swiftPaytm integration in swift
Paytm integration in swift
 
How to implement payment gateway integration for non-credit card on Magento2
How to implement payment gateway integration for non-credit card on Magento2How to implement payment gateway integration for non-credit card on Magento2
How to implement payment gateway integration for non-credit card on Magento2
 
The complete ASP.NET (IIS) Tutorial with code example in power point slide show
The complete ASP.NET (IIS) Tutorial with code example in power point slide showThe complete ASP.NET (IIS) Tutorial with code example in power point slide show
The complete ASP.NET (IIS) Tutorial with code example in power point slide show
 
Workshop: Building a streaming data platform on AWS
Workshop: Building a streaming data platform on AWSWorkshop: Building a streaming data platform on AWS
Workshop: Building a streaming data platform on AWS
 
WHMCS Order Form Template - One Page Checkout
WHMCS Order Form Template - One Page CheckoutWHMCS Order Form Template - One Page Checkout
WHMCS Order Form Template - One Page Checkout
 
java and javascript api dev guide
java and javascript api dev guidejava and javascript api dev guide
java and javascript api dev guide
 
Building a Streaming Data Platform on AWS - Workshop
Building a Streaming Data Platform on AWS - WorkshopBuilding a Streaming Data Platform on AWS - Workshop
Building a Streaming Data Platform on AWS - Workshop
 
Cloud Kiosk Service Automation Tool for Microsoft Cloud Solution Providers
Cloud Kiosk Service Automation Tool for Microsoft Cloud Solution ProvidersCloud Kiosk Service Automation Tool for Microsoft Cloud Solution Providers
Cloud Kiosk Service Automation Tool for Microsoft Cloud Solution Providers
 
WooCommerce: payment gateways
WooCommerce: payment gatewaysWooCommerce: payment gateways
WooCommerce: payment gateways
 
Get Paid presentation_20190123
Get Paid presentation_20190123Get Paid presentation_20190123
Get Paid presentation_20190123
 
Developing enterprise ecommerce solutions using hybris by Drazen Nikolic - Be...
Developing enterprise ecommerce solutions using hybris by Drazen Nikolic - Be...Developing enterprise ecommerce solutions using hybris by Drazen Nikolic - Be...
Developing enterprise ecommerce solutions using hybris by Drazen Nikolic - Be...
 
Cloud Kiosk for Microsoft Cloud Services 0316
Cloud Kiosk for Microsoft Cloud Services 0316Cloud Kiosk for Microsoft Cloud Services 0316
Cloud Kiosk for Microsoft Cloud Services 0316
 
Safex pay wl-pg-presentation
Safex pay wl-pg-presentationSafex pay wl-pg-presentation
Safex pay wl-pg-presentation
 
Hyperleger Composer Architecure Deep Dive
Hyperleger Composer Architecure Deep DiveHyperleger Composer Architecure Deep Dive
Hyperleger Composer Architecure Deep Dive
 
Flamingo Commerce Module Details
Flamingo Commerce Module DetailsFlamingo Commerce Module Details
Flamingo Commerce Module Details
 
Developing enterprise ecommerce solutions using hybris by Drazen Nikolic
Developing enterprise ecommerce solutions using hybris by Drazen NikolicDeveloping enterprise ecommerce solutions using hybris by Drazen Nikolic
Developing enterprise ecommerce solutions using hybris by Drazen Nikolic
 
Kerberos Survival Guide: Columbus 2015
Kerberos Survival Guide: Columbus 2015Kerberos Survival Guide: Columbus 2015
Kerberos Survival Guide: Columbus 2015
 
Kerberos Survival Guide: SharePointalooza
Kerberos Survival Guide: SharePointaloozaKerberos Survival Guide: SharePointalooza
Kerberos Survival Guide: SharePointalooza
 

More from KenticoCMS

Going mobile
Going mobileGoing mobile
Going mobile
KenticoCMS
 
How to sell Kentico CMS
How to sell Kentico CMSHow to sell Kentico CMS
How to sell Kentico CMS
KenticoCMS
 
Going mobile
Going mobileGoing mobile
Going mobile
KenticoCMS
 
Does your website speak Chinese?
Does your website speak Chinese?Does your website speak Chinese?
Does your website speak Chinese?
KenticoCMS
 
Azure businessoverview daliborkacmar
Azure businessoverview daliborkacmarAzure businessoverview daliborkacmar
Azure businessoverview daliborkacmar
KenticoCMS
 
Google Ad words
Google Ad words   Google Ad words
Google Ad words
KenticoCMS
 

More from KenticoCMS (6)

Going mobile
Going mobileGoing mobile
Going mobile
 
How to sell Kentico CMS
How to sell Kentico CMSHow to sell Kentico CMS
How to sell Kentico CMS
 
Going mobile
Going mobileGoing mobile
Going mobile
 
Does your website speak Chinese?
Does your website speak Chinese?Does your website speak Chinese?
Does your website speak Chinese?
 
Azure businessoverview daliborkacmar
Azure businessoverview daliborkacmarAzure businessoverview daliborkacmar
Azure businessoverview daliborkacmar
 
Google Ad words
Google Ad words   Google Ad words
Google Ad words
 

Recently uploaded

Mind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AIMind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AI
Kumud Singh
 
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
Edge AI and Vision Alliance
 
Introducing Milvus Lite: Easy-to-Install, Easy-to-Use vector database for you...
Introducing Milvus Lite: Easy-to-Install, Easy-to-Use vector database for you...Introducing Milvus Lite: Easy-to-Install, Easy-to-Use vector database for you...
Introducing Milvus Lite: Easy-to-Install, Easy-to-Use vector database for you...
Zilliz
 
Pushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 daysPushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 days
Adtran
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
Octavian Nadolu
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
Quotidiano Piemontese
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems S.M.S.A.
 
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
James Anderson
 
How to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptxHow to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptx
danishmna97
 
20240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 202420240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 2024
Matthew Sinclair
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
innovationoecd
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
shyamraj55
 
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
Neo4j
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
Ana-Maria Mihalceanu
 
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy SurveyTrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
SOFTTECHHUB
 
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
Neo4j
 
Microsoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdfMicrosoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdf
Uni Systems S.M.S.A.
 
Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1
DianaGray10
 
RESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for studentsRESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for students
KAMESHS29
 

Recently uploaded (20)

Mind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AIMind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AI
 
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
“Building and Scaling AI Applications with the Nx AI Manager,” a Presentation...
 
Introducing Milvus Lite: Easy-to-Install, Easy-to-Use vector database for you...
Introducing Milvus Lite: Easy-to-Install, Easy-to-Use vector database for you...Introducing Milvus Lite: Easy-to-Install, Easy-to-Use vector database for you...
Introducing Milvus Lite: Easy-to-Install, Easy-to-Use vector database for you...
 
Pushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 daysPushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 days
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
 
Uni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdfUni Systems Copilot event_05062024_C.Vlachos.pdf
Uni Systems Copilot event_05062024_C.Vlachos.pdf
 
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
 
How to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptxHow to Get CNIC Information System with Paksim Ga.pptx
How to Get CNIC Information System with Paksim Ga.pptx
 
20240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 202420240609 QFM020 Irresponsible AI Reading List May 2024
20240609 QFM020 Irresponsible AI Reading List May 2024
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
 
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
GraphSummit Singapore | Graphing Success: Revolutionising Organisational Stru...
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
 
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy SurveyTrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy Survey
 
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
Why You Should Replace Windows 11 with Nitrux Linux 3.5.0 for enhanced perfor...
 
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
 
Microsoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdfMicrosoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdf
 
Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1Communications Mining Series - Zero to Hero - Session 1
Communications Mining Series - Zero to Hero - Session 1
 
RESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for studentsRESUME BUILDER APPLICATION Project for students
RESUME BUILDER APPLICATION Project for students
 

E-commerce customization

  • 2. E-commerce customization Agenda 1) Using custom e-commerce providers 2) Developing custom dialog for the checkout process 3) Developing custom payment gateway
  • 3. E-commerce customization 1) Using custom e-commerce providers
  • 4. Using custom e-commerce providers How doest it work?
  • 5. Using custom e-commerce providers • Assembly: CMS.Ecommerce • Namespace: CMS.Ecommerce • Provider: ShippingOptionInfoProvider • Method: CalculateShipping(…) public static double CalculateShipping(ShoppingCartInfo cartObj, string siteName) { if (ECommerceHelper.UseCustomHandlers()) { return ECommerceHelper.GetShippingOptionInfoProvider().CalculateShipping(cartObj, siteName); } else { return CMS.CMSEcommerce.ShippingOptionInfoProvider.CalculateShipping(cartObj, siteName); } } Are custom e-commerce providers enabled? YES → Run custom code NO → Run Kentico code Wrapper
  • 6. Using custom e-commerce providers • Assembly: CMS.Ecommerce • Namespace: CMS.CMSEcommerce • Provider: ShippingOptionInfoProvider • Method: CalculateShipping(…) public static double CalculateShipping(ShoppingCartInfo cartObj, string siteName) { // if shipping free limit is reached -> return zero (shipping is free) // else -> return shipping option value } Here is Kentico logic for shipping calculation, something like: Kentico code
  • 7. Using custom e-commerce providers • Assembly: CMS.CustomECommerceProvider • Namespace: CMS.CustomECommerceProvider • Provider: CustomShippingOptionInfoProvider • Method: CalculateShipping(…) public double CalculateShipping(object cartObj, string siteName) { return CMS.CMSEcommerce.ShippingOptionInfoProvider.CalculateShipping( (CMS.Ecommerce.ShoppingCartInfo)cartObj, siteName); } Kentico method is called by default Custom code
  • 8. Using custom e-commerce providers 1) Open Visual Studio and add CustomECommerceProvider project from code samples to your CMS solution 2) Modify code of the custom e-commerce providers to reach your requirements 3) Add the following key to your web.config file to enable custom e-commerce providers: <add key=“CMSUseCustomEcommerceProviders” value=“true”>
  • 9. Using custom e-commerce providers DEMO 1) How to customize shipping calculation – customize CalculateShipping() 2) How to automatically set some credit to a new customer – Customize SetCustomerInfo()
  • 10. E-commerce customization 2) Developing custom dialog for the checkout process
  • 11. Developing custom dialog for the checkout process
  • 12. Developing custom dialog for the checkout process DEMO 1) Create checkout process step user control (*.ascx) • inherit from ShoppingCartStep • override bool IsValid() • override bool ProcessStep() 2) Register checkout process step
  • 13. E-commerce customization 3) Developing custom payment gateway
  • 15. Developing custom payment gateway DEMO 1) Create payment gateway form • inherit from CMSPaymentGatewayForm • override bool ValidateData() • override bool ProcessData() 2) Create payment gateway provider • inherit from CMSPaymentGatewayProvider • override void GetPaymentDataForm() • override bool ProcessPayment() 3) Register payment gateway
  • 16. E-commerce customization Summary 1) Using custom e-commerce providers 2) Developing custom dialog for the checkout process 3) Developing custom payment gateway