Skip to content
This repository has been archived by the owner on May 27, 2019. It is now read-only.

Added creditcardpart of new Mollie API #8

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion Payment Providers.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.30723.0
VisualStudioVersion = 12.0.31101.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "uWebshop.Payment.Buckaroo", "uWebshop.Payment.Buckaroo\uWebshop.Payment.Buckaroo.csproj", "{7FF6D835-1748-42F6-A5AB-4003A8008B3D}"
EndProject
Expand All @@ -28,6 +28,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Readme", "Readme", "{EFD4A4
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "uWebshop.Payment.EasyIdeal", "uWebshop.Payment.EasyIdeal\uWebshop.Payment.EasyIdeal.csproj", "{FE59C869-3526-4904-8760-2B020939D545}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "uWebshop.Payment.MollieCC", "uWebshop.Payment.MollieCC\uWebshop.Payment.MollieCC.csproj", "{3BAE4BF2-E1B6-4DA7-AB7E-305D04B669AF}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -74,6 +76,10 @@ Global
{FE59C869-3526-4904-8760-2B020939D545}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FE59C869-3526-4904-8760-2B020939D545}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FE59C869-3526-4904-8760-2B020939D545}.Release|Any CPU.Build.0 = Release|Any CPU
{3BAE4BF2-E1B6-4DA7-AB7E-305D04B669AF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3BAE4BF2-E1B6-4DA7-AB7E-305D04B669AF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3BAE4BF2-E1B6-4DA7-AB7E-305D04B669AF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3BAE4BF2-E1B6-4DA7-AB7E-305D04B669AF}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
4 changes: 2 additions & 2 deletions uWebshop.Payment.Mollie/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@
The provider will forward the customer to Mollie to make the payment when they confirm the order.

In the root of your Umbraco site you'll find the "config" folder. Inside this folder is a "uWebshop" folder.
There you will find the "uwbsPayment.config" file.
There you will find the "PaymentProviders.config" file.
(We advise the config folder package to be able to view config files from the umbraco backend)

You should add the following lines to the uwbsPaymnet.config file:
You should add the following lines to the PaymentProviders.config file:

<provider title="Mollie">
<PSPID>#YOUR PSID#</PSPID>
Expand Down
Loading