PluginProbe
Welcart e-Commerce / 1.3.6
Welcart e-Commerce v1.3.6
2.12.4 2.12.3 2.11.35 2.12.2 2.12.1 2.11.34 2.11.33 2.11.32 2.11.31 2.11.30 1.3.16 1.3.17 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.10 1.4.11 1.4.12 All 292 releases
usc-e-shop / templates / cart / completion.php

completion.php in Welcart e-Commerce 1.3.6, at templates/cart/completion.php

29 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 global $usces_entries, $usces_carts;
3 usces_get_entries();
4 usces_get_carts();
5
6 $html = '';
7
8 $html .= '<h3>'.__('It has been sent succesfully.', 'usces').'</h3>'."\n";
9 $html .= '<div class="post">'."\n";
10 $html .= '<div class="header_explanation">'."\n";
11 $header = '<p>'.__('Thank you for shopping.', 'usces').'<br />'.__("If you have any questions, please contact us by 'Contact'.", 'usces').'</p>';
12 $html .= apply_filters('usces_filter_cartcompletion_page_header', $header, $usces_entries, $usces_carts)."\n";
13 $html .= '</div><!-- header_explanation -->'."\n";
14
15 require( USCES_PLUGIN_DIR . "/includes/completion_settlement.php");
16
17 $html .= apply_filters('usces_filter_cartcompletion_page_body', NULL, $usces_entries, $usces_carts)."\n";
18
19 $html .= '<div class="footer_explanation">'."\n";
20 $footer = '';
21 $html .= apply_filters('usces_filter_cartcompletion_page_footer', $footer, $usces_entries, $usces_carts)."\n";
22 $html .= '</div><!-- footer_explanation -->'."\n";
23
24 $html .= '<div class="send"><a href="' . home_url() . '" class="back_to_top_button">' . __('Back to the top page.', 'usces') . '</a></div>'."\n";
25
26 $html .= '</div><!-- post -->'."\n";
27 $html .= apply_filters('usces_filter_conversion_tracking', NULL, $usces_entries, $usces_carts)."\n";
28 ?>
29