Merge pull request #1155 from itflow-org/rec-payment-stripe

Autopay
This commit is contained in:
Johnny
2025-01-28 17:18:23 -05:00
committed by GitHub
4 changed files with 11 additions and 5 deletions

View File

@@ -48,6 +48,9 @@
</div>
<select class="form-control select2" name="payment_method" required>
<option value="">- Method of Payment -</option>
<?php if ($config_stripe_enable) { ?>
<option value="Stripe">Stripe</option>
<?php } ?>
<?php
$sql_payment_method_select = mysqli_query($mysqli, "SELECT * FROM categories WHERE category_type = 'Payment Method' AND category_archived_at IS NULL ORDER BY category_name ASC");