LogoLogo
  • Introducing Tebex
    • Store Overview
  • Pricing & Plans
    • Starter
    • Plus
    • Tebex Plan Payment Methods
    • Tebex Platform Fee
    • Plus Plan Expiry
  • Initial setup
    • General checklist for setting up a Tebex store
    • Identity Verification for Tebex Store Onboarding
    • Your Store Review
    • Tips for getting your store application approved
    • What is Intellectual Property?
    • Adult Content Guidelines
  • Tebex Control Panel
    • Dashboard
    • Payments
      • Manual Payments
      • Recurring Payments
      • Payment Methods
      • Checkout Settings
      • Fraud Analysis
      • Wallet
      • Payment Exports
    • Packages
      • How To Create A Package
      • How To Create A Category
      • How To Test A Package
      • Cumulative Packages
      • Downloadable Packages
      • Product Best Practice
    • Statistics
    • Customers
      • Customer Lookup
      • Banning
    • Webstore
      • Tebex Footer
      • Appearance
        • Custom CSS & HTML
        • Visibility
      • Sidebar Modules
      • Pages
      • Variables
        • Template Variables
      • Currency
        • Regional Pricing
      • Translations
        • Language
        • Custom Translations
      • Emails
      • Domains
        • Subdomain & Custom Domain
      • Notifications
        • Slack & Discord Notifications
    • Engagement
      • Coupon Codes
      • Sales
      • Creator Codes
      • Gift Cards
      • Community Goals
      • Abandoned Basket Recovery
      • Purchase Follow Ups
      • Upselling
      • Offers
    • Game Servers
      • FiveM
        • FiveM (Server Wrapper)
      • Minecraft: Java Edition
        • BuycraftX
      • ARK: Survival Evolved
      • Minecraft: Bedrock Edition
      • Space Engineers
        • Space Engineers Item IDs
        • How the Legacy Space Engineers Vanilla Integration Works
        • Mod Guidelines and FAQs
      • Unturned
      • Rust
      • Garry's Mod
      • Hurtworld
      • Counter Strike: GO
      • 7 Days To Die
      • Team Fortress 2
      • Conan Exiles
      • RCON (Legacy)
      • RCON Adapter
      • MySQL Depreciation
      • Product Deliverables Configuration
    • Discord Servers
    • Store Transfers
    • Team Accounts
    • Billing
      • Store Cancellation
  • Tebex Checkout
    • How Payments Work
    • Fees
    • Seller Protection and Chargebacks
    • Where and Why We Charge Sales Tax/VAT
      • Information for Accountants
    • Checkout Process
    • Paysafecard
    • Wallet
    • Wallet Restrictions - Deposits & Locks
    • Fund Withdrawals and Transfers
      • PayPal Withdrawal Fees
      • Bank Account Withdrawal Fees
      • Wire Transfer List of Countries & Fees
    • Checkout FAQ
    • Seller Support Guidance
    • Checkout Seller Actions
      • Changing Usernames
      • Changing Discord ID's
      • Resending Commands
      • Customer Lookup
      • Checkout Bans
    • Tebex Checkout for WHMCS
  • Subscribe @ Tebex Academy
  • Developer Documentation
  • FAQs
  • Growth and Success
    • πŸ›’Tebex Store Best Practices
    • πŸ“†Sales Calendar - 2025
    • 🎁Gift Cards
    • πŸ’¬Community Engagement
    • ❓Frequently asked questions
    • πŸš—FiveM Best Practices for Packages
    • πŸ₯ΌFiveM Beta Assets Best practices
    • πŸ“–Creator Success: Case Studies
      • πŸš›Reducing Support Backlog through Restructuring the Team
      • πŸ”Improving User Retention via β€œLoss Leader”
      • πŸ“…Subscription Stability and Growth
  • Command Management
    • An Introduction To Commands
    • Command Troubleshooting
    • Resending Commands
    • Support for Epic Game IDs
Powered by GitBook
On this page

Was this helpful?

  1. Tebex Checkout

Checkout Process

Optimise your customers' checkout flow when using Tebex Checkout

When using Tebex Checkout, your customers will use a streamlined, centralised checkout flow.

If you are creating a custom template for your Tebex Store, you must ensure the following HTML is placed on the checkout page to enable your customers to proceed to the Checkout flow.

We recommend taking a backup of your template before making any changes. If you're unsure on what to do, contact an experienced web developer or Tebex support.

<div class="card py-5 px-4 rounded-0 border-top text-center">
    <h2 class="mb-3">{{ __("Proceed to checkout") }}</h2>
    <div class="row justify-content-center">
        <div class="col-12 col-lg-8">
            <form method="post" action="/checkout/pay" class="gateway">
                <button type="submit" class="btn btn-primary btn-lg btn-block" id="purchase-button" data-loading-text="{{ __("Loading, please wait...") }}">
                    {{ __("Proceed to checkout") }}
                </button>
                <p class="mb-0 text-center mt-3"><small>{{ __("You will be redirected to our payment gateway to complete your purchase") }}</small></p>
            </form>
        </div>
    </div>
</div>

PreviousInformation for AccountantsNextPaysafecard

Last updated 1 year ago

Was this helpful?