new payment method

  • Posts: 82728
  • Thank you received: 13343
  • MODERATOR
13 years 6 months ago #13529

Hi David,

That's a great news !

Please let us now once you updated the product page so that we can link to it from our list of payment integrations in the documentation.

Please Log in or Create an account to join the conversation.

  • Posts: 16
  • Thank you received: 0
13 years 5 months ago #16226

Hi all,

Today i went live on an iDeal plugin from www.ideal-checkout.nl/

Their deal is that once someone has asked them to develop a plugin and pays them for it, it usually will be free for all others. I asked them when they will publish the plugin on their site, I will update you when I've received a reaction.

And Hikashop, I believe this is a next step to be a very interesting webshop component for Dutch webshop owners!

Please Log in or Create an account to join the conversation.

  • Posts: 82728
  • Thank you received: 13343
  • MODERATOR
13 years 5 months ago #16229

That's great :)
Let us know when it is online so that we can link to it on our end.

Please Log in or Create an account to join the conversation.

  • Posts: 16
  • Thank you received: 0
13 years 1 month ago #25357

Hi all,

The guys from ideal-checkout.nl have published their iDeal plugin! You can download it for free at
www.ideal-checkout.nl/ideal-voor-joomla-en-hikashop.html

Installation is very easy, works like a charm!

Please Log in or Create an account to join the conversation.

  • Posts: 82728
  • Thank you received: 13343
  • MODERATOR
13 years 1 month ago #25362

Thank you for letting us know !

Please Log in or Create an account to join the conversation.

  • Posts: 13
  • Thank you received: 1
13 years 1 month ago #25387

Hello I just want to know what is the right payment method..? Thanks,,

Please Log in or Create an account to join the conversation.

  • Posts: 82728
  • Thank you received: 13343
  • MODERATOR
13 years 1 month ago #25388

It depends of hat you want. They are all right. If you want users to pay by paypal, you should use paypal, if you want them to pay by check, you should use the check payment plugin, etc. There is no right or wrong.

Please Log in or Create an account to join the conversation.

  • Posts: 2
  • Thank you received: 0
13 years 1 month ago #25478

Hello I just want to know what is the most safe payment method?

Last edit: 13 years 1 month ago by nicolas.

Please Log in or Create an account to join the conversation.

  • Posts: 152
  • Thank you received: 0
13 years 1 month ago #25484

Depends on your requirements Mangastreamer, and where you are located. We've gone for the HSBC payment system because there is a strong HSBC presence in the UK, and it uses SSL for extra security (and it was the cheapest, relatively speaking)

You can't rally go far wrong with PayPal payments standard to be honest, unless it's not popular in your country (I know it isn't well known in some areas of the world).

If you need extra security, any of the payment systems which require SSL will do the job. Prices for signing up to these systems can vary greatly however, so do some googling of each one first.


Create your own style of luxury bespoke furniture online

Please Log in or Create an account to join the conversation.

  • Posts: 120
  • Thank you received: 2
11 years 3 months ago #116041

Hi Dear
How can add new payment method? I need develop a new payment plugin.
for develop new plugin Which method I use?
thank you.

Please Log in or Create an account to join the conversation.

  • Posts: 82728
  • Thank you received: 13343
  • MODERATOR
11 years 3 months ago #116061

Hi,

I invite you to read our developer documentation here for that:
www.hikashop.com/en/support/documentatio...r-documentation.html
Also, you can look at the code of the payment plugins we already have included in HikaShop. You will find the files in the folder plugins/hikashoppayment once you install HikaShop on your joomla website.

The following user(s) said Thank You: kaya

Please Log in or Create an account to join the conversation.

  • Posts: 120
  • Thank you received: 2
11 years 3 months ago #116065

Thank you

for develop payment use this link?

www.hikashop.com/en/support/documentatio...tml#onPaymentDisplay

Please Log in or Create an account to join the conversation.

  • Posts: 82728
  • Thank you received: 13343
  • MODERATOR
11 years 3 months ago #116066

That's just one of the triggers that you need to implement in your plugin. Also, that trigger is now optional. I highly invite you to look at some of the payment plugins that we already built so that we can see the triggers that are used in them to see what you need to do.

The following user(s) said Thank You: kaya

Please Log in or Create an account to join the conversation.

  • Posts: 120
  • Thank you received: 2
11 years 3 months ago #116184

Hi
I should use the nusoap class for verify payment.
which file or function in plugin I can use it?
thank you

Last edit: 11 years 3 months ago by kaya.

Please Log in or Create an account to join the conversation.

  • Posts: 82728
  • Thank you received: 13343
  • MODERATOR
11 years 3 months ago #116187

The nusoap class is a class of PHP not HikaShop. If you want to use it because you need to do soap connections with your payment gateway you can but I can't say how. You can use it in any function of the plugin.

The following user(s) said Thank You: kaya

Please Log in or Create an account to join the conversation.

  • Posts: 120
  • Thank you received: 2
11 years 3 months ago #117151

Hi nicolas
I develop a new payment method but after payment my Order status only is created.
how can update it to confirmed?
is it confirmed after payment or admin change it to confirmed?
thank you

Please Log in or Create an account to join the conversation.

  • Posts: 82728
  • Thank you received: 13343
  • MODERATOR
11 years 3 months ago #117179

Hi,

Both are possible. If you base yourself on the paypal plugin, you can look at the onPaymentNotification function. That's the function which is called by PayPal when the order is paid (because we tell it to notify that function in the parameters that are sent by HikaShop to PayPal).
There, we first get the parameters, load the order corresponding, contact paypal to make sure that the notification comes from them, check that the paid amount is the same than the amount of the order in the database and then confirm the order and send the admin payment notification email.

The following user(s) said Thank You: kaya

Please Log in or Create an account to join the conversation.

  • Posts: 120
  • Thank you received: 2
11 years 3 months ago #117213

Hi Nicolas
Thanks for your good Help.
I need to verify my payment with my bank again and if my result is ok after it confirmed payment at database
can I add my verify code in onPaymentNotification function?
thank you.

Please Log in or Create an account to join the conversation.

  • Posts: 82728
  • Thank you received: 13343
  • MODERATOR
11 years 3 months ago #117302

Hi,

Yes, but only if your bank can call the payment notification URL automatically like PayPal does.
If not, then you can potentially implement the onCronTrigger function in order to call your bank periodically and check for payments.
It depends on how they handle payment validation on their end, so I can say which method should be used.
Normally, most banks should use the first method so adding your code in onPaymentNotification is probably what you'll end up doing.

The following user(s) said Thank You: kaya

Please Log in or Create an account to join the conversation.

  • Posts: 120
  • Thank you received: 2
11 years 3 months ago #117333

thank you nicolas
My bank use nusoap class for verify. after payment bank send me resultCode and if is ok I send to bank merchantId and referenceId for confirmed and my database is confirmed payment.
now i don't know use which method. use onPaymentNotification function or another function.

Last edit: 11 years 3 months ago by kaya.

Please Log in or Create an account to join the conversation.

Time to create page: 0.133 seconds
Powered by Kunena Forum