- Stripe wasn't showing as an option in the modal
- Show the current payment method at the top of the recurring invoice
This commit is contained in:
wrongecho
2025-01-28 11:19:56 +00:00
parent 39adab734b
commit 071352e32f
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");