Page 2 of 2

Re: Payment method

Posted: 30 Sep 2025, 21:46
by landed
Hi
I am still very much interested in fixing this. What is happening is that I select stripe as the payment option then I can check the terms and conditions and then Confirm Order. The order goes through with a success message without getting a form for the card details or redirection. It is set to test mode in Stripe using the sandbox credentials.

My concern is that I would like an inline form for the credit card form. And stripe do provide a JS option so this happens on their server for credit card details.

Is this possible with the way Phoca Cart works? Or do we need to redirect always as paypal does. Thank You.

Re: Payment method

Posted: 30 Sep 2025, 23:11
by landed
The plugin isn't running though it is looking ok in Joomla backend and phoca cart backend recognises it in the settings.

For some reason no methods are working:

class plgPcpStripe_standard extends CMSPlugin
{
protected $name = 'stripe_standard';

public function __construct(&$subject, $config)
{
parent::__construct($subject, $config);
$this->loadLanguage();
}

public function onAfterInitialise()
{
die("✅ Stripe plugin is loading now!");
}

Re: Payment method

Posted: 06 Oct 2025, 15:55
by Jan
Hi, I don't think onAfterinitialise is running in Phoca Cart, hard to say, there are specific events for Phoca Cart but never tested onAfterinitialise. :idea:

Jan

Re: Payment method

Posted: 06 Oct 2025, 16:09
by landed
Can you ask the developers (I thought you were the dev actually) what hooks we can use please.