- Posts: 19
- Thank you received: 0
order number to display on status page
- partswench
-
Topic Author
- Offline
IF so how and if not
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
- partswench
-
Topic Author
- Offline
- Posts: 19
- Thank you received: 0
here is the work flow for it, check out with authorize.net plug... order accepted... on the page that loads after the payment saying it has been accepted I need the order number on that page,
this is a great product by the way, keep it up!!!!!!!!!
Please Log in or Create an account to join the conversation.
- partswench
-
Topic Author
- Offline
- Posts: 19
- Thank you received: 0
here is a the test site for the real site that is live
rmgsilver.partswench.com
goo ahead and register and then you will see a silver American eagle link on the top menu bar after registering and the gateway is in test mode so I hope that helps
Please Log in or Create an account to join the conversation.
You will find there the code displaying the message as well as the JS code for the redirection.
The order id will be in the variable: $vars
Please Log in or Create an account to join the conversation.
- partswench
-
Topic Author
- Offline
- Posts: 19
- Thank you received: 0
<?php
/**
* @package HikaShop for Joomla!
* @version 1.5.7
* @author hikashop.com
* @copyright (C) 2010-2012 HIKARI SOFTWARE. All rights reserved.
* @license GNU/GPLv3 www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?>
<div class="hikashop_authorize_thankyou" id="hikashop_authorize_thankyou">
<span id="hikashop_authorize_thankyou_message" class="hikashop_authorize_thankyou_message">
<?php echo JText::_('THANK_YOU_FOR_PURCHASE');
if(!empty($return_url)){
echo '<br/><a href="'.$return_url.'">'.JText::_('GO_BACK_TO_SHOP').'</a>';
}?>
</span>
</div>
<?php
if(!empty($return_url)){
$doc =& JFactory::getDocument();
$doc->addScriptDeclaration("window.addEvent('domready', function() {window.location='".$return_url."'});");
}
Please Log in or Create an account to join the conversation.
echo ' Order number: '.$vars;
after :
echo JText::_('THANK_YOU_FOR_PURCHASE');
Please Log in or Create an account to join the conversation.
- partswench
-
Topic Author
- Offline
- Posts: 19
- Thank you received: 0
it says order number but does not insert the order #
Here is what I did...
<?php
/**
* @package HikaShop for Joomla!
* @version 1.5.7
* @author hikashop.com
* @copyright (C) 2010-2012 HIKARI SOFTWARE. All rights reserved.
* @license GNU/GPLv3 www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?>
<div class="hikashop_authorize_thankyou" id="hikashop_authorize_thankyou">
<span id="hikashop_authorize_thankyou_message" class="hikashop_authorize_thankyou_message">
<?php echo JText::_('THANK_YOU_FOR_PURCHASE'); echo ' Order number: '.$vars;
if(!empty($return_url)){
echo '<br/><a href="'.$return_url.'">'.JText::_('GO_BACK_TO_SHOP').'</a>';
}?>
</span>
</div>
<?php
if(!empty($return_url)){
$doc =& JFactory::getDocument();
$doc->addScriptDeclaration("window.addEvent('domready', function() {window.location='".$return_url."'});");
}
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
- partswench
-
Topic Author
- Offline
- Posts: 19
- Thank you received: 0
could it being in test mode have anything to do with it
Please Log in or Create an account to join the conversation.
echo ' Order number: '.$order->order_number;
Please Log in or Create an account to join the conversation.
- partswench
-
Topic Author
- Offline
- Posts: 19
- Thank you received: 0
thanks so much,
I have to say that I really appreciate you guys and your quick response and help
In the last month I have paid for way too many extensions, redshop being one of them and gotten no support or such a long time to get a question answered it was virtually no support.. this seem to be happening more and more in the J community
When you have a client breathing down your neck it does not help to wait for a week or two for an answer to a question like where is the language string file. I actually had this cost me a good client when it happened,
I will be back with more clients
thanks again and do you care if I suggest to joomlabamboo that they use you in one of their templates for development.. they are also wonderful
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.