????JFIF??x?x????'
Server IP : 104.21.64.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/cwd/wp-content/plugins/wpforms-lite/templates/admin/payments/single/ |
Upload File : |
<?php /** * Single Payment page - Advanced details template. * * @since 1.8.2 * * @var array $details_list Details list. */ if ( ! defined( 'ABSPATH' ) ) { exit; } ?> <div id="wpforms-payment-advanced-info" class="postbox"> <div class="postbox-header"> <h2 class="hndle"> <span><?php echo esc_html__( 'Advanced Details', 'wpforms-lite' ); ?></span> </h2> </div> <div class="inside"> <?php foreach ( $details_list as $item ) : ?> <div class="wpforms-payment-advanced-item" > <p class="wpforms-payment-advanced-item-label"> <?php echo esc_html( $item['label'] ); ?> </p> <div class="wpforms-payment-advanced-item-value"> <?php if ( isset( $item['link'] ) ) : ?> <a href="<?php echo esc_url( $item['link'] ); ?>" target="_blank" rel="noopener noreferrer" class="wpforms-link"> <?php endif; ?> <?php echo wp_kses_post( nl2br( make_clickable( $item['value'] ) ) ); ?> <?php if ( isset( $item['link'] ) ) : ?> </a> <?php endif; ?> </div> </div> <?php endforeach; ?> </div> </div>