PluginProbe
Welcart e-Commerce / 2.12.4
Welcart e-Commerce v2.12.4
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 / member / verifying.php

verifying.php in Welcart e-Commerce 2.12.4, at templates/member/verifying.php

35 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Verifying page template
4 *
5 * @package Welcart
6 */
7
8 $member_compmode = $this->page;
9
10 $html = '<div id="memberpages">
11
12 <div class="post">';
13
14 $html .= '<div class="header_explanation">';
15 $header = '';
16 $html .= apply_filters( 'usces_filter_memberverifying_page_header', $header );
17 $html .= '</div>';
18
19 $remaining_hour = USCES_VERIFY_MEMBERS_EMAIL::get_remaining_hour();
20
21 $html .= '<h2>' . esc_html__( 'Completed sending an authentication email', 'usces' ) . '</h2>';
22 $html .= '<p>' . esc_html__( 'An authentication email has been sent. Click on the approval URL in the email to complete membership registration.', 'usces' ) . '</p>';
23 $html .= '<p>' . sprintf( __( "This registration will be invalidated if authentication is not completed within %d hours.", 'usces' ), $remaining_hour ) . '</p>';
24
25 $html .= '<div class="footer_explanation">';
26 $footer = '';
27 $html .= apply_filters( 'usces_filter_memberverifying_page_footer', $footer );
28 $html .= '</div>';
29
30 $html .= '<p><a href="' . esc_url( USCES_MEMBER_URL ) . '">' . esc_html__( 'to vist membership information page', 'usces' ) . '</a></p>';
31 $html .= '<div class="send"><a href="' . home_url() . '" class="back_to_top_button">' . esc_html__( 'Back to the top page.', 'usces' ) . '</a></div>';
32 $html .= '</div>
33
34 </div>';
35