Paradigm - User Documentation
High Five ✋ Themes
  • 👋Introduction
  • 🆕Changelog
  • 🏁GETTING STARTED
    • 🔽Uploading a Theme
  • 📜MAIN TEMPLATE
    • 📰Post Template
    • 📄Page Template
    • 📑Categories (Tags) Template
    • 👨‍🎨Authors Template
    • ♾️Archive (All posts) Template
  • ⚙️CUSTOM SETTING
    • ™️Logos
    • 🔤Typography (Fonts)
    • 🧭Header Type
    • 🎨Background Color
    • 🧮Border Radius
    • 📢Subscribe CTA Text and Subtext
    • 🏠Homepage Layout
    • 🖌️Additional Colors
  • 🤝MEMBERSHIP
    • 🎬Setting Up
    • ⬇️Sign In Page
    • 🆙Sign Up Page
    • 🔀Subscribe Page
    • 👤Account Page
    • 💸Membership Page
  • 🛠️OTHER SETTINGS
    • ⏬Submenus
    • 📸Add Your Instagram Link (Icon)
    • 💬Comments
  • ☑️TERMS & CONDITIONS
    • 🔁Refund Policy
Powered by GitBook
On this page
  • To create Membership page:
  • To cutomize border-radius for tier card:
  1. MEMBERSHIP

Membership Page

PreviousAccount PageNextSubmenus

Last updated 11 months ago

To create Membership page:

  1. Go to Pages from the admin menu

  2. Click the New page button in the top right corner

  3. Add the heading "Membership"

  4. Click icon in the top right corner to open the Page settings

  5. Enter membership in Page URL setting input!

  6. Click the Template selector and choose the Membership option

  7. If you want, you can add an excerpt, that would be under the "Membership" title. To do this, add your preferable text inside the Excerpt setting text input.

  8. Click Publish

The Membership page in our theme supports adding content (e.g. FAQs). You can add any content you want, and it will be under membership tiers cards. If you want to add FAQs:

  1. Add any Heading (e.g. "FAQ" or "FAQs").

  2. To add a question with an answer - just simply add Toggle element.

To cutomize border-radius for tier card:

  • Access the Settings > Code Injection from the admin menu.

  • Click Open

  • In the provided space, specify the desired border-radius using the appropriate CSS variable. For example:

    <style>
        .tier-card:nth-child(1){
        border-top-left-radius: var(--border-radius-blocks);
        border-bottom-left-radius: var(--border-radius-blocks);
      }
    
      .tier-card:nth-child(3){
        border-top-right-radius: var(--border-radius-blocks);
        border-bottom-right-radius: var(--border-radius-blocks);
      }
    </style>
  • Click Save

🤝
💸