Advertisement
Guest User

Untitled

a guest
Oct 11th, 2014
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 3.07 KB | None | 0 0
  1. {*
  2. * 2007-2013 PrestaShop
  3. *
  4. * NOTICE OF LICENSE
  5. *
  6. * This source file is subject to the Academic Free License (AFL 3.0)
  7. * that is bundled with this package in the file LICENSE.txt.
  8. * It is also available through the world-wide-web at this URL:
  9. * http://opensource.org/licenses/afl-3.0.php
  10. * If you did not receive a copy of the license and are unable to
  11. * obtain it through the world-wide-web, please send an email
  12. * to license@prestashop.com so we can send you a copy immediately.
  13. *
  14. * DISCLAIMER
  15. *
  16. * Do not edit or add to this file if you wish to upgrade PrestaShop to newer
  17. * versions in the future. If you wish to customize PrestaShop for your
  18. * needs please refer to http://www.prestashop.com for more information.
  19. *
  20. *  @author PrestaShop SA <contact@prestashop.com>
  21. *  @copyright  2007-2013 PrestaShop SA
  22. *  @license    http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
  23. *  International Registered Trademark & Property of PrestaShop SA
  24. *}
  25.  
  26. {$HOOK_LOKALINC_CONVERSION_CODE}
  27.  
  28. {capture name=path}{l s='Order confirmation'}{/capture}
  29.  
  30. <h1>{l s='Order confirmation'}</h1>
  31. {include file="$tpl_dir./breadcrumb.tpl"}
  32.  
  33. {assign var='current_step' value='payment'}
  34. {include file="$tpl_dir./order-steps.tpl"}
  35.  
  36. {include file="$tpl_dir./errors.tpl"}
  37.  
  38. {$HOOK_ORDER_CONFIRMATION}
  39. {$HOOK_PAYMENT_RETURN}
  40.  
  41. <br />
  42. {if $is_guest}
  43.        <p>{l s='Your order ID is:'} <span class="bold">{$id_order_formatted}</span> . {l s='Your order ID has been sent via email.'}</p>
  44.        <a href="{$link->getPageLink('guest-tracking', true, NULL, "id_order={$reference_order}&email={$email}")|escape:'html'}" title="{l s='Follow my order'}"><img src="{$img_dir}icon/order.gif" alt="{l s='Follow my order'}" class="icon" /></a>
  45.        <a href="{$link->getPageLink('guest-tracking', true, NULL, "id_order={$reference_order}&email={$email}")|escape:'html'}" title="{l s='Follow my order'}">{l s='Follow my order'}</a>
  46. {else}
  47.        <a href="{$link->getPageLink('history', true)|escape:'html'}" title="{l s='Back to orders'}"><img src="{$img_dir}icon/order.gif" alt="{l s='Back to orders'}" class="icon" /></a>
  48.        <a href="{$link->getPageLink('history', true)|escape:'html'}" title="{l s='Back to orders'}">{l s='Back to orders'}</a>
  49. {/if}
  50. <!-- Google Code for Online sales Conversion Page -->
  51. {literal}
  52. <script type="text/javascript">
  53. /* <![CDATA[ */
  54. var google_conversion_id = 991452477;
  55. var google_conversion_language = "en";
  56. var google_conversion_format = "3";
  57. var google_conversion_color = "ffffff";
  58. var google_conversion_label = "HUUzCMbegFYQvbrh2AM";
  59. var google_conversion_value = 10.00;
  60. var google_conversion_currency = "EUR";
  61. var google_remarketing_only = false;
  62. /* ]]> */
  63. </script>
  64. {/literal}
  65. <script type="text/javascript" src="//www.googleadservices.com/pagead/conversion.js">
  66. </script>
  67. <noscript>
  68. <div style="display:inline;">
  69. <img height="1" width="1" style="border-style:none;" alt="" src="//www.googleadservices.com/pagead/conversion/991452477/?value=10.00&amp;currency_code=EUR&amp;label=HUUzCMbegFYQvbrh2AM&amp;guid=ON&amp;script=0"/>
  70. </div>
  71. </noscript>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement