# usc-e-shop/1.3.3/templates/cart/completion.php

Welcart e-Commerce, version 1.3.3. 29 lines.

- Page: https://pluginprobe.com/plugins/usc-e-shop/1.3.3/code/templates/cart/completion.php
- Raw: https://pluginprobe.com/plugins/usc-e-shop/1.3.3/raw/templates/cart/completion.php
- Modified: 2012-09-07T04:26:28+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/usc-e-shop/1.3.3/code/templates/cart/completion.php#L10-L20`.

```php
<?php
global $usces_entries, $usces_carts;
usces_get_entries();
usces_get_carts();

$html = '';

$html .= '<h3>'.__('It has been sent succesfully.', 'usces').'</h3>'."\n";
$html .= '<div class="post">'."\n";
$html .= '<div class="header_explanation">'."\n";
$header = '<p>'.__('Thank you for shopping.', 'usces').'<br />'.__("If you have any questions, please contact us by 'Contact'.", 'usces').'</p>';
$html .= apply_filters('usces_filter_cartcompletion_page_header', $header, $usces_entries, $usces_carts)."\n";
$html .= '</div><!-- header_explanation -->'."\n";

require( USCES_PLUGIN_DIR . "/includes/completion_settlement.php");

$html .= apply_filters('usces_filter_cartcompletion_page_body', NULL, $usces_entries, $usces_carts)."\n";

$html .= '<div class="footer_explanation">'."\n";
$footer = '';
$html .= apply_filters('usces_filter_cartcompletion_page_footer', $footer, $usces_entries, $usces_carts)."\n";
$html .= '</div><!-- footer_explanation -->'."\n";

$html .= '<div class="send"><a href="' . home_url() . '" class="back_to_top_button">' . __('Back to the top page.', 'usces') . '</a></div>'."\n";

$html .= '</div><!-- post -->'."\n";
$html .= apply_filters('usces_filter_conversion_tracking', NULL, $usces_entries, $usces_carts)."\n";
?>

```
