Server IP : 162.0.217.223 / Your IP : 216.73.216.153 Web Server : LiteSpeed System : Linux premium269.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : mypckeys ( 1539) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/mypckeys/yeslicense.org/wp-content/plugins/woo-stripe-payment/templates/ |
Upload File : |
<?php /** * @var null|array $installments * @version 3.3.19 */ if ( is_null( $installments ) ) { $installments = array( 'none' => array( 'text' => esc_html__( 'Fill out card form for eligibility.', 'woo-stripe-payment' ) ) ); } ?> <div class="wc-stripe-installment-container"> <label class="installment-label"> <?php esc_html_e( 'Pay in installments:', 'woo-stripe-payment' ); ?> <div class="wc-stripe-installment-loader__container"> <div class="wc-stripe-installment-loader" style="display: none"> <div></div> <div></div> <div></div> </div> </div> </label> <?php woocommerce_form_field( WC_Stripe_Constants::INSTALLMENT_PLAN, array( 'id' => WC_Stripe_Constants::INSTALLMENT_PLAN, 'type' => 'select', 'options' => wp_list_pluck( $installments, 'text' ), 'class' => array( 'wc-stripe-installment-options' ), 'input_class' => array( 'input-text' ) ), array_keys( $installments )[0] ) ?> </div>