Server IP : 209.38.156.173 / Your IP : 216.73.216.122 [ Web Server : Apache/2.4.52 (Ubuntu) System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.22 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/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>