Jump to content

Mobile Payment Gateways not available


Recommended Posts

Currently only COD and Paypal Payment Gateways seem to work with Prestashop Mobile. Is this a Prestashop restriction or the Payment Gateway Creator restriction? If Prestashop restriction, are there timelines when this will be available?

 

Kind Regards

Link to comment
Share on other sites

  • 6 months later...

Dear Webonator,

 

For my problem I found the solution, as you can see in this topic: http://www.prestasho...s/#entry1479906

 

You should create a new file "Module.php" in /override/classes/module/

with this code

 

<?php
class Module extends ModuleCore
{
    public static function getPaypalIgnore()
    {
        return false;
    }

}

 

You can try it. For me, it worked.

 

Bye!

 

Stefano

Link to comment
Share on other sites

  • 6 months later...

Dear Webonator,

 

For my problem I found the solution, as you can see in this topic: http://www.prestasho...s/#entry1479906

 

You should create a new file "Module.php" in /override/classes/module/

with this code

 

<?php

class Module extends ModuleCore

{

    public static function getPaypalIgnore()

    {

        return false;

    }

 

}

 

You can try it. For me, it worked.

 

Bye!

 

Stefano

Hi Stefano, so yo have to create a new file Module.php and only with those lines of code? What about the old Module.php and all other functions inside it? Thanks

Link to comment
Share on other sites

Hi Stefano, so yo have to create a new file Module.php and only with those lines of code? What about the old Module.php and all other functions inside it? Thanks

Ok, I understood now, it is a new file to override a function in  the Original one . But  after this I will see immediately the effect in my mobile store or should I restart something?

Link to comment
Share on other sites

  • 2 months later...

Hello all, I have tried this fix but no success. I have cleared my cache, deleted my smarty compile files, renamed my class_index file all to no avail.

 

After clicking "i confirm my order" on the payment validation page, it loads but nothing happens. On clicking again i get a white page. I have set debug mode to true in my defines.inc.php and no error message is logged

 

Am using prestashop 1.5.6

 

Any help would be appreciated. thanks

Link to comment
Share on other sites

×
×
  • Create New...