Paypal and Stripe: Redirecting to shop: No use of orderdone.php?

Started by ThiloS, April 26, 2022, 15:44:01 PM

Previous topic - Next topic

ThiloS

Hi there, if paying via Paypal or Stripe i have the following problem:

The redirect to the shop will not use the orderdone.php template.

It just displays a thankyou message inside a <h3> tag and that's it.

The orderdone.php reveals a wrapping class named "vm-wrap" instead.
(By using offline Payment this php-file is used and the "vm-wrap" class can be styled).

How can i get Paypal and Stripe to work with that php.file as well?

Or is there another way to put the "thank you message" inside a div container?

Greets,
Thilo

pinochico

I think:
Rewrite PayPal or Stripe payment plugin == develop custom version self or waiting for upgrade

Because info to orderdone send payment plugin - our Gopay payment plugin send our info which developed self.
www.minijoomla.org  - new portal for Joomla!, Virtuemart and other extensions
XML Easy Feeder - feeds for FB, GMC,.. from products, categories, orders, users, articles, acymailing subscribers and database table
Virtuemart Email Manager - customs email templates
Import products for Virtuemart - from CSV and XML
Rich Snippets - Google Structured Data
VirtueMart Products Extended - Slider with products, show Others bought, Products by CF ID and others filtering products

Jumbo!

"orderdone.php" does not always print the final order confirmation page. If you use a self-hosted payment plugin, it prints the order confirmation details in "orderdone.php".

If you use an external payment service, this layout file redirects the users to the external website. In that case, the order confirmation page is displayed using -
components/com_virtuemart/views/vmplg/tmpl/default.php

You can add your desired div in this layout file by overriding it in your template.

pinochico

www.minijoomla.org  - new portal for Joomla!, Virtuemart and other extensions
XML Easy Feeder - feeds for FB, GMC,.. from products, categories, orders, users, articles, acymailing subscribers and database table
Virtuemart Email Manager - customs email templates
Import products for Virtuemart - from CSV and XML
Rich Snippets - Google Structured Data
VirtueMart Products Extended - Slider with products, show Others bought, Products by CF ID and others filtering products

ThiloS

@ Jumbo!
This is really PERFECT! Thanks for the help.

Thanks a lot... i guess i would never have found this file!!!