EDD Shop Administration

Name Code Status Type Min price Amount
Admin Label Checkout label Supports
Stripe Credit Card ["buy_now"]
PayPal PayPal ["buy_now"]
PayPal Standard PayPal ["buy_now"]
Test Payment Test Payment
Amazon Amazon []
Wallet My Wallet
Rate Country State Global

Page markup

  <ul class="nav nav-tabs">
    <li class="nav-item"><a class="nav-link active" href="?active=discount_codes">Discount codes</a></li>
    <li class="nav-item"><a class="nav-link " href="?active=payment_methods">Payment methods</a></li>
    <li class="nav-item"><a class="nav-link " href="?active=tax_rates">Tax rates</a></li>
  </ul>

  <div class="tab-content">

  <div id="discount_codes" class="tab-pane fade-in active">
    <table class="table">
      <thead>
        <th>Name</th>
        <th>Code</th>
        <th>Status</th>
        <th>Type</th>
        <th>Min price</th>
        <th>Amount</th>
      </thead>
      <tbody>
        <Loop type=edd_discount>
          <tr>
            <td><Field name /></td>
            <td><Field code /></td>
            <td><Field status_label /></td>
            <td><Field type /></td>
            <td><Field min_price /></td>
            <td><Field amount /></td>
          </tr>
        </Loop>
      </tbody>
    </table>
  </div>

  <div id="payment_methods" class="tab-pane fade">
    <table class="table">
      <thead>
        <th>Admin Label</th>
        <th>Checkout label</th>
        <th>Supports</th>
      </thead>
      <tbody>
        <Loop type=edd_payment_method>
          <tr>
            <td><Field admin_label /></td>
            <td><Field checkout_label /></td>
            <td><Field supports /></td>
          </tr>
        </Loop>
      </tbody>
    </table>
  </div>

  <div id="tax_rates" class="tab-pane fade">
    <table class="table">
      <thead>
        <th>Rate</th>
        <th>Country</th>
        <th>State</th>
        <th>Global</th>
      </thead>
      <tbody>
        <Loop type=edd_tax_rate>
          <tr>
            <td><Field rate /></td>
            <td><Field country /></td>
            <td><Field state /></td>
            <td><Field global /></td>
          </tr>
        </Loop>
      </tbody>
    </table>
  </div>

  </div>