| 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 |
|