PluginProbe
Subscriptions for WooCommerce with Stripe Recurring Payments / 1.3.1
Subscriptions for WooCommerce with Stripe Recurring Payments v1.3.1
2.0.0 1.11.2 1.11.1 1.11.0 1.10.9 1.10.8 1.10.7 1.10.6 1.10.5 1.10.4 1.10.3 1.10.2 1.10.1 1.10.0 1.9.6 1.9.5 trunk 1.3.0 1.3.1 1.3.2 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 All 61 releases
subscription / includes / Admin / views / subscription-save-meta.php

subscription-save-meta.php in Subscriptions for WooCommerce with Stripe Recurring Payments 1.3.1, at includes/Admin/views/subscription-save-meta.php

17 lines 656 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <p class="subscrpt_sub_box">
2 <select id="subscrpt_order_type" name="subscrpt_order_action">
3 <option value="" disabled><?php esc_html_e( 'Choose Action', 'sdevs_subscrpt' ); ?></option>
4 <?php foreach ( $actions as $action ) : ?>
5 <option value="<?php echo esc_html( $action['value'] ); ?>"
6 <?php
7 if ( $action['value'] == $status ) {
8 echo 'selected';}
9 ?>
10 ><?php echo esc_html( $action['label'] ); ?></option>
11 <?php endforeach; ?>
12 </select>
13 </p>
14 <div class="submitbox">
15 <input type="submit" class="button save_order button-primary tips" name="save" value="Process">
16 </div>
17