How can I create individual confirmation-page after checkout?

16.04.2015 14:52
#1
Joomlafreak
Joomshopping forum user no avatar
Name: Uli
16.04.2015
Posts: 1
Quote
How can I create individual confirmation-page after checkout?

Hi guys,

after finishing all purchasing steps in the shop the customer gets a very minimal designed response page with the simple sentence "Vielen Dank für Ihre Bestellung".

I know where to change this sentence (in de-DE.php language file). That's not the case.

But I would like to design my own checkout page (including picture, html-formatet copy etc.) but can't find where I can define a redirect URL for the checkout.

Any ideas?

Thanks for all hints you have.

 
16.04.2015 21:05
#2
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 25853
Quote
Aw: How can I create individual confirmation-page after checkout?

https://www.webdesigner-profi.de/joomla-webdesign/joomla-shop/forum/posts/7/3567.html?lang=en

 
18.04.2015 16:10
#3
cornarie
User cornarie
Name: Cees van Doorn
06.06.2011
Posts: 48
Quote
Aw: Dutch Langage

How can we get a full language pack in Dutch.
Several text isen't translated, even after downloading 3.13

 
19.04.2015 20:26
#4
admin
(Support Team)
User admin
Name: Admin
05.08.2010
Posts: 25853
Quote
Aw: How can I create individual confirmation-page after checkout?

https://www.webdesigner-profi.de/joomla-webdesign/joomla-shop/forum/posts/7/2655.html?lang=en

 
18.11.2015 17:45
#5
le5
Joomshopping forum user no avatar
Name: le5 GmbH
17.03.2012
Posts: 74
Quote
Aw: How can I create individual confirmation-page after checkout?

Hello

If you want to show even more informations on your confirmation-page you must create a Plugin which reacts on the trigger onBeforeDisplayCheckoutFinish().

I just did this, because I needed the total amount of the order for a trackingscript.
As example use the free google conversion addon and install it.

of course you could make it the very awfull and just change the code of this plugin, what i don't recommend ...

as example my plugin needs the amount, so I created a new plugin based original on the google plugin with following code.

public function onBeforeDisplayCheckoutFinish(&$text, &$order_id){

$row = JTable::getInstance('addon', 'jshop');
$row->loadAlias('affilinet_tracking');
$addon_params=$row->getParams();

$db = JFactory::getDbo();
$query = $db->getQuery(true);
$query->select("o.order_subtotal");
$query->from('#__jshopping_orders AS o');
$query->where('order_id = ' . $order_id );

$db->setQuery($query);
$amount = $db->loadResult();

...

of course you can get everything on this page, since you got the order_id

hope this helped a little

 


Copyrights MAXXmarketing GmbH. Alle Rechte vorbehalten
Durch die Nutzung dieser Website stimme ich zu, dass Cookies zur optimalen Gestaltung der Website sowie zur Analyse der Nutzung der Website verwendet werden. Weiterführende Informationen finden Sie hier. OK, einverstanden.