# Kajabi ## Docs - [Authentication](https://help.kajabi.com/api-reference/authentication.md) - [Get access token](https://help.kajabi.com/api-reference/authentication/get-access-token.md): ## Request `access_token` and `refresh_token` There are three ways to exchange parameters for tokens 1. Provide client credentials `client_id` and `client_secret` 2. Provide a `refresh_token` 3. Provide `username` and `password` (client credentials is preferred) - [Revoke a token](https://help.kajabi.com/api-reference/authentication/revoke-a-token.md): ## Revoke an `access_token` and `refresh_token` Either token may be provided to "log out" of the API session. Both tokens we be invalidated. - [Blog post details](https://help.kajabi.com/api-reference/blog-posts/blog-post-details.md): Shows details of a blog post - [List blog posts](https://help.kajabi.com/api-reference/blog-posts/list-blog-posts.md): Returns a list of blog posts which the current user may access ## Pagination Use `page[number]` and `page[size]` parameters to paginate results: ### Get first page of 10 items * `GET /v1/blog_posts[number]=1&page[size]=10` ### Get second page of 25 items * `GET /v1/blog_posts[number]=2&page[size]=25… - [Changelog](https://help.kajabi.com/api-reference/changelog.md) - [Contact note details](https://help.kajabi.com/api-reference/contact-notes/contact-note-details.md): Returns a single contact note by ID. - [Create contact note](https://help.kajabi.com/api-reference/contact-notes/create-contact-note.md): Creates a new contact note. - [Delete contact note](https://help.kajabi.com/api-reference/contact-notes/delete-contact-note.md): Deletes a contact note by ID. This action is permanent and cannot be undone. - [List contact notes](https://help.kajabi.com/api-reference/contact-notes/list-contact-notes.md): Returns a paginated list of contact notes. This endpoint supports filtering, sorting, and pagination. - [Update contact note](https://help.kajabi.com/api-reference/contact-notes/update-contact-note.md): Updates an existing contact note. Only the note body can be updated. - [Contact tag details](https://help.kajabi.com/api-reference/contact-tags/contact-tag-details.md): ## Contact Tag Attributes * `name` (string) - The name of the contact tag - [List contact tags](https://help.kajabi.com/api-reference/contact-tags/list-contact-tags.md): Tags (not archived) for a site - [Add tag to contact](https://help.kajabi.com/api-reference/contacts/add-tag-to-contact.md): Add tag relationships to contact resource using a list of resource identifiers - [Contact details](https://help.kajabi.com/api-reference/contacts/contact-details.md): Show details for a contact ## Contact Attributes * `name` (string) - The name of the contact * `email` (string) - The email of the contact, must be a valid and deliverable email address * `address_line_1` (string) - The first line of the contact's address * `address_line_2` (string) - The second lin… - [Create a contact](https://help.kajabi.com/api-reference/contacts/create-a-contact.md): Create a contact for a site. ## Contact attributes * New contact does not support `external_user_id` attribute. * See custom_fields endpoint to discover attributes for using custom fields attributes. - [Delete contact](https://help.kajabi.com/api-reference/contacts/delete-contact.md) - [Grant offer to contact](https://help.kajabi.com/api-reference/contacts/grant-offer-to-contact.md): ## Grant offer(s) to a contact Create an offer grant for a contact which results in creating a new customer record for your contact. - [List contacts](https://help.kajabi.com/api-reference/contacts/list-contacts.md): List of contacts, we recommended filtering by site. - [List contact's offers](https://help.kajabi.com/api-reference/contacts/list-contacts-offers.md): Get the contact's relationship to offers (granted). - [List contact's tags](https://help.kajabi.com/api-reference/contacts/list-contacts-tags.md): Get the contact's relationship to tags, response is a list of resource identifiers - [Remove tag from contact](https://help.kajabi.com/api-reference/contacts/remove-tag-from-contact.md): Remove tag relationships to contact resource using a list of resource identifiers. - [Replace offers for contact](https://help.kajabi.com/api-reference/contacts/replace-offers-for-contact.md): ## Replace offer grant(s) for a contact Replace offer grants (grants and revokes offers to/from contact) using a list of resource identifiers In the request body inlcude offer resource identifier(s), `id: OFFER_ID`, `type: "offers"`. ``` { "data": [{"type": "offers", "id": "456"}, {"type": "offers",… - [Replace tags for contact](https://help.kajabi.com/api-reference/contacts/replace-tags-for-contact.md): Replace tag relationships to contact resource using a list of resource identifiers. - [Revoke offer from contact](https://help.kajabi.com/api-reference/contacts/revoke-offer-from-contact.md): ## Revoke offer grant(s) for a contact Revoke offer grant(s) using a list of resource identifiers In the request body inlcude offer resource identifier(s), `id: OFFER_ID`, `type: "offers"`. ``` { "data": [{"type": "offers", "id": "123"}] } ``` ## Response * A successful response body will list the o… - [Update contact](https://help.kajabi.com/api-reference/contacts/update-contact.md): ## Contact attributes * A contact with a related customer resource does support `external_user_id` attribute. * See custom_fields endpoint to discover attributes for using custom fields attributes. ## Update a contact Example request body: ```json { "data": { "type": "contacts", "id": "456… - [Course details](https://help.kajabi.com/api-reference/courses/course-details.md): Details of a course that can be offered to a contact or purchased - [List courses](https://help.kajabi.com/api-reference/courses/list-courses.md): List of courses that can be offered to a contact or purchased ## Pagination Use the `page[number]` and `page[size]` query parameters to paginate results: ### Get first page of 10 items * `GET /v1/courses?page[number]=1&page[size]=10` ### Get second page of 25 items * `GET /v1/courses?page[number]=2&… - [Custom field details](https://help.kajabi.com/api-reference/custom-fields/custom-field-details.md): ## Custom Field attributes * `handle` (string) - The key for a `contact` resource, e.g. `custom_1`, `custom_2`, `custom_3` * `title` (string) - The title of the custom field * `type` (string) - The type of the custom field * `required` (boolean) - Whether the custom field is required * `archived` (b… - [List custom fields](https://help.kajabi.com/api-reference/custom-fields/list-custom-fields.md): ## Custom Field attributes The 'handle' attribute may be used as a key for a contact resource, e.g. custom_1, custom_2, custom_3 ## Pagination Use `page[number]` and `page[size]` parameters to paginate results: ### Get first page of 10 items * `GET /v1/custom_fields?page[number]=1&page[size]=10` ###… - [Customer details](https://help.kajabi.com/api-reference/customers/customer-details.md): Show customer details * The `name` and `email` attributes are kept in sync with the related `contact` resource * The `external_user_id` attribute may be used as a customer reference in an external system - [Grant offer to customer](https://help.kajabi.com/api-reference/customers/grant-offer-to-customer.md): ## Grant offer(s) to a customer Create an offer grant for a customer. - [List customers](https://help.kajabi.com/api-reference/customers/list-customers.md): List of customers ## Pagination Use `page[number]` and `page[size]` parameters to paginate results: ### Get first page of 10 items * `GET /v1/customers?page[number]=1&page[size]=10` ### Get second page of 25 items * `GET /v1/customers?page[number]=2&page[size]=25` - [List customer's offers](https://help.kajabi.com/api-reference/customers/list-customers-offers.md): Get the customer's relationship to offers (granted). - [Replace offers for customer](https://help.kajabi.com/api-reference/customers/replace-offers-for-customer.md): ## Replace offer grant(s) for a customer Replace offer grants (grants and revokes offers to/from customer) using a list of resource identifiers In the request body inlcude offer resource identifier(s), `id: OFFER_ID`, `type: "offers"`. ``` { "data": [{"type": "offers", "id": "456"}, {"type": "offers… - [Revoke offer from customer](https://help.kajabi.com/api-reference/customers/revoke-offer-from-customer.md): ## Revoke offer grant(s) for a customer Revoke offer grant(s) using a list of resource identifiers In the request body inlcude offer resource identifier(s), `id: OFFER_ID`, `type: "offers"`. ``` { "data": [{"type": "offers", "id": "123"}] } ``` ## Response * A successful response body will list the… - [Form details](https://help.kajabi.com/api-reference/forms/form-details.md): Shows details of a form - [Form submission details](https://help.kajabi.com/api-reference/forms/form-submission-details.md): Shows details of a form submission - [List form submissions](https://help.kajabi.com/api-reference/forms/list-form-submissions.md): Form submissions for authorized sites - [List forms](https://help.kajabi.com/api-reference/forms/list-forms.md): Contact forms for a site ## Pagination Use `page[number]` and `page[size]` parameters to paginate results: ### Get first page of 10 items * `GET /v1/forms?page[number]=1&page[size]=10` ### Get second page of 25 items * `GET /v1/forms?page[number]=2&page[size]=25` - [Submit form](https://help.kajabi.com/api-reference/forms/submit-form.md): ## Submit a form * The `name` and `email` attributes are required. * The `email` attribute must be a valid and deliverable email address. - [Introduction](https://help.kajabi.com/api-reference/introduction.md) - [Get payout details](https://help.kajabi.com/api-reference/kajabi-payments-payouts/get-payout-details.md): Get detailed information about a specific Kajabi Payments payout, including all associated transactions. - [List payouts](https://help.kajabi.com/api-reference/kajabi-payments-payouts/list-payouts.md): List of Kajabi Payments payouts for a site. Payouts represent transfers of funds from Kajabi to the site owner's connected bank account or payment method. - [Landing page details](https://help.kajabi.com/api-reference/landing-pages/landing-page-details.md): Shows details of a landing page - [List landing pages](https://help.kajabi.com/api-reference/landing-pages/list-landing-pages.md): Returns a list of landing pages which the current user may access - [My user profile](https://help.kajabi.com/api-reference/me/my-user-profile.md): Returns the current user's profile data. ## Response attributes The response will include the following attributes: * `initials` - A derived attribute that represents the user's initials based on their name. This is typically used for avatar placeholders or compact user displays. For example, "John… - [List offers](https://help.kajabi.com/api-reference/offers/list-offers.md): List of offers (not archived) for a site that can be granted to a contact ## Pagination Use `page[number]` and `page[size]` parameters to paginate results: ### Get first page of 10 items * `GET /v1/offers?page[number]=1&page[size]=10` ### Get second page of 25 items * `GET /v1/offers?page[number]=2&… - [List offer's products](https://help.kajabi.com/api-reference/offers/list-offers-products.md): get the offer's relationship to products, response is a list of resource identifiers - [Offer details](https://help.kajabi.com/api-reference/offers/offer-details.md): The offer system is a core part of Kajabi's e-commerce functionality, allowing course creators and digital product owners to monetize their content through various pricing and payment models while maintaining flexibility in how offers are presented and processed. - [List order items](https://help.kajabi.com/api-reference/orders/list-order-items.md): Order items represent individual products or offers within an order. - [List orders](https://help.kajabi.com/api-reference/orders/list-orders.md): Orders for a site ## Pagination Use `page[number]` and `page[size]` parameters to paginate results: ### Get first page of 10 items * `GET /v1/orders?page[number]=1&page[size]=10` ### Get second page of 25 items * `GET /v1/orders?page[number]=2&page[size]=25` - [Order details](https://help.kajabi.com/api-reference/orders/order-details.md): Shows details of an order - [Order item details](https://help.kajabi.com/api-reference/orders/order-item-details.md): Shows details of an order item - [List podcasts](https://help.kajabi.com/api-reference/podcasts/list-podcasts.md): Podcasts for a site ## Pagination Use `page[number]` and `page[size]` parameters to paginate results: ### Get first page of 10 items * `GET /v1/podcasts?page[number]=1&page[size]=10` ### Get second page of 25 items * `GET /v1/podcasts?page[number]=2&page[size]=25` - [Show podcast](https://help.kajabi.com/api-reference/podcasts/show-podcast.md): Get details for a specific podcast ## Attributes - **title**: The podcast title - **description**: The podcast description - **language**: The podcast language (e.g., "en", "es") - **owner_email**: The podcast owner's email address - **owner_name**: The podcast owner's name - **status**: The podcast… - [List products](https://help.kajabi.com/api-reference/products/list-products.md): List of products (not archived) that can be granted to a contact ## Pagination Use `page[number]` and `page[size]` parameters to paginate results: ### Get first page of 10 items * `GET /v1/products?page[number]=1&page[size]=10` ### Get second page of 25 items * `GET /v1/products?page[number]=2&page[… - [Product details](https://help.kajabi.com/api-reference/products/product-details.md): Show details of a product ## Sparse Fields Use the `fields[products]` parameter to request only specific attributes: ### Get only title and publish_status fields * `GET /v1/products/123?fields[products]=title,publish_status` - [Cancel subscription](https://help.kajabi.com/api-reference/purchases/cancel-subscription.md): Cancel the subscription associated with a purchase by ID - [Deactivate purchase](https://help.kajabi.com/api-reference/purchases/deactivate-purchase.md): Deactivate a purchase by ID, this will not cancel the subscription. - [List purchases](https://help.kajabi.com/api-reference/purchases/list-purchases.md): Returns a list of purchases (offer purchases) which the current user may access ## Pagination Use `page[number]` and `page[size]` parameters to paginate results: ### Get first page of 10 items * `GET /v1/purchases?page[number]=1&page[size]=10` ### Get second page of 25 items * `GET /v1/purchases?pag… - [Purchase details](https://help.kajabi.com/api-reference/purchases/purchase-details.md): Details of a purchase (of an offer) - [Reactivate purchase](https://help.kajabi.com/api-reference/purchases/reactivate-purchase.md): Reactivate a purchase by ID, this will not reactivate the subscription. - [List sites](https://help.kajabi.com/api-reference/sites/list-sites.md): List of sites that the current user has access to ## Pagination Use `page[number]` and `page[size]` parameters to paginate results: ### Get first page of 10 items * `GET /v1/sites?page[number]=1&page[size]=10` ### Get second page of 25 items * `GET /v1/sites?page[number]=2&page[size]=25` - [List website pages](https://help.kajabi.com/api-reference/sites/list-website-pages.md): Returns a list of website pages which the current user may access ## Pagination Use `page[number]` and `page[size]` parameters to paginate results: ### Get first page of 10 items * `GET /v1/website_pages[number]=1&page[size]=10` ### Get second page of 25 items * `GET /v1/website_pages[number]=2&page… - [Site details](https://help.kajabi.com/api-reference/sites/site-details.md): The site system is a fundamental part of Kajabi's platform, representing a customer's branded presence and serving as the container for their products, courses, and other content. Each site can be customized extensively while maintaining the core functionality needed for e-learning and digital produ… - [Website page details](https://help.kajabi.com/api-reference/sites/website-page-details.md): Details of a website page - [List transactions](https://help.kajabi.com/api-reference/transactions/list-transactions.md): List of payment transactions related to completed financial activity (successful charges, refunds, and disputes) that are associated with actual purchases, excluding test transactions, free purchases, failed attempts, and pending transactions. - [Transaction details](https://help.kajabi.com/api-reference/transactions/transaction-details.md): The transaction system is a critical part of Kajabi's payment infrastructure, handling all monetary operations while maintaining detailed records for accounting, reporting, and compliance purposes. - [Version](https://help.kajabi.com/api-reference/version/version.md): Returns the current version of the Kajabi API and links to the API documentation. - [Create hook](https://help.kajabi.com/api-reference/webhooks/create-hook.md): Creates a new webhook subscription - [Delete hook](https://help.kajabi.com/api-reference/webhooks/delete-hook.md): Deletes a webhook subscription - [Form submission sample](https://help.kajabi.com/api-reference/webhooks/form-submission-sample.md): Returns sample webhook payload for the `form_submission` event: ``` [ { "id": "0", "type": "form_submissions", "attributes": { "name": "John Doe", "email": "john.doe@example.com", "address_line_1": null, "address_line_2": null, "address_city": null,… - [Hook details](https://help.kajabi.com/api-reference/webhooks/hook-details.md): Returns specific hook based on it ID - [List hooks](https://help.kajabi.com/api-reference/webhooks/list-hooks.md): Lists webhooks for a site - [Order created sample](https://help.kajabi.com/api-reference/webhooks/order-created-sample.md): Returns sample webhook payload for the `order_created` event: ``` [ { "id": "0", "type": "transactions", "attributes": { "action": "charge", "state": "succeeded", "payment_type": "charge", "amount_in_cents": 1000, "sales_tax_in_cents": 0, "currency":… - [Payment succeeded sample](https://help.kajabi.com/api-reference/webhooks/payment-succeeded-sample.md): Returns sample webhook payload for the `payment_succeeded` event: ``` [ { "id": "0", "type": "transactions", "attributes": { "action": "charge", "state": "succeeded", "payment_type": "charge", "amount_in_cents": 1000, "sales_tax_in_cents": 0, "curren… - [Purchase sample](https://help.kajabi.com/api-reference/webhooks/purchase-sample.md): Returns sample webhook payload for the `purchase` event: ``` [ { "id": "0", "type": "purchases", "attributes": { "amount_in_cents": 1000, "payment_type": "single", "multipay_payments_made": null, "opt_in": false, "raw_extra_contact_information": {},… - [Tag added sample](https://help.kajabi.com/api-reference/webhooks/tag-added-sample.md): Returns sample webhook payload for the `tag_added` event: ``` [ { "id": "0", "type": "contacts", "attributes": { "name": "Sample Recipient", "email": "sample@example.com", "address_line_1": "123 Kajabi Ln", "address_line_2": "Kajabi Suite 4", "address_city… - [Tag removed sample](https://help.kajabi.com/api-reference/webhooks/tag-removed-sample.md): Returns sample webhook payload for the `tag_removed` event: ``` [ { "id": "0", "type": "contacts", "attributes": { "name": "Sample Recipient", "email": "sample@example.com", "address_line_1": "123 Kajabi Ln", "address_line_2": "Kajabi Suite 4", "address_ci… - [Permanently delete a Kajabi account](https://help.kajabi.com/articles/account-settings/billing/can-i-permanently-delete-my-kajabi-account.md): Submit a Data Rights Request to permanently delete a Kajabi account and all associated data. - [Cancel a Kajabi account](https://help.kajabi.com/articles/account-settings/billing/cancel-your-kajabi-account.md): Cancel a Kajabi subscription and understand what happens afterward. - [Pay an overdue balance](https://help.kajabi.com/articles/account-settings/billing/how-to-make-a-payment-for-an-overdue-balance.md): Clear an overdue balance on a Kajabi subscription and understand what happens if payment is not received. - [Manage services and customer payments after account cancellation](https://help.kajabi.com/articles/account-settings/billing/how-to-manage-services-and-customer-payments-after-canceling-your-kajabi-account.md): Manage active subscriptions and services after canceling a Kajabi account. - [Pause a Kajabi subscription](https://help.kajabi.com/articles/account-settings/billing/how-to-pause-your-kajabi-subscription.md): Park a Kajabi account to take a break while preserving data and progress. - [Reactivate a Kajabi account](https://help.kajabi.com/articles/account-settings/billing/how-to-reactivate-your-kajabi-account.md): Reactivate a cancelled or parked Kajabi account and restore full access to site content. - [Update billing details](https://help.kajabi.com/articles/account-settings/billing/how-to-update-billing-details.md): Update a payment method and billing address for a Kajabi subscription. - [View invoices](https://help.kajabi.com/articles/account-settings/billing/how-to-view-your-invoices.md): Access upcoming billing dates, amounts due, and past invoice history for a Kajabi subscription. - [Kajabi subscription tax FAQs](https://help.kajabi.com/articles/account-settings/billing/kajabi-subscription-tax-faqs.md): Understand how taxes are calculated, applied, and verified on your Kajabi subscription. - [Kajabi trial information](https://help.kajabi.com/articles/account-settings/billing/kajabi-trial-information.md): Understand the Kajabi free trial, including features, limitations, and billing. - [Manage subscription](https://help.kajabi.com/articles/account-settings/billing/manage-your-subscription.md): Update a Kajabi plan, view usage, increase feature limits, and manage add-ons. - [Manage subscriptions and refunds as a course member](https://help.kajabi.com/articles/account-settings/billing/managing-subscriptions-refunds-and-payment-details-as-a-member-of-a-course-on-kajabi.md): Manage your subscription, request refunds, or update payment details as a course member on Kajabi. - [Resolve unexpected charges or duplicate invoices during a trial](https://help.kajabi.com/articles/account-settings/billing/why-am-i-seeing-unexpected-charges-holds-or-duplicate-invoices-during-my-kajabi-trial.md): Identify and resolve authorization holds, duplicate charges, or unexpected invoices during a Kajabi trial. - [Understand the $149 hold during a free trial](https://help.kajabi.com/articles/account-settings/billing/why-do-i-see-a-149-charge-after-signing-up-for-a-free-trial.md): Explains the temporary $149 authorization hold placed on your card during a Kajabi free trial. - [Protect an online business](https://help.kajabi.com/articles/account-settings/my-kajabi/best-practices-for-protecting-your-online-business.md): Adopt security best practices to keep your Kajabi account and online business safe. - [Change account details](https://help.kajabi.com/articles/account-settings/my-kajabi/change-your-account-details.md): Update account details including name, email, avatar, and more. - [Change a site language](https://help.kajabi.com/articles/account-settings/my-kajabi/change-your-site-language.md): Configure Language Settings to automatically translate auto-generated text on a Kajabi site. - [Navigate the Dashboard](https://help.kajabi.com/articles/account-settings/my-kajabi/dashboard-explained.md): Navigate the Kajabi Dashboard, the home base for managing a business. - [Email verification FAQs](https://help.kajabi.com/articles/account-settings/my-kajabi/email-verification-faqs.md): Understand email verification requirements for Kajabi accounts. - [Regain access to a Kajabi account](https://help.kajabi.com/articles/account-settings/my-kajabi/how-can-i-regain-access-to-my-kajabi-account-or-resolve-access-related-issues.md): Resolve common access issues with a Kajabi account. - [Unblock a Kajabi account](https://help.kajabi.com/articles/account-settings/my-kajabi/how-to-unblock-your-kajabi-account.md): Confirm an IP address and unblock an account after suspicious activity detection. - [Update a password](https://help.kajabi.com/articles/account-settings/my-kajabi/how-to-update-your-password.md): Update or reset a Kajabi account password. - [Log in with Google](https://help.kajabi.com/articles/account-settings/my-kajabi/log-in-with-google.md): Use Google to sign up for and sign into a Kajabi account. - [Set up two-factor authentication (2FA)](https://help.kajabi.com/articles/account-settings/my-kajabi/protect-your-account-with-two-factor-authentication-2fa.md): Set up and manage two-factor authentication for a Kajabi account. - [Manage Kajabi sites](https://help.kajabi.com/articles/account-settings/my-kajabi/sites-explained.md): Manage Kajabi sites and configure multiple sites within an account. - [Secure an account after unauthorized access](https://help.kajabi.com/articles/account-settings/my-kajabi/unknown-user-account-access.md): Secure a Kajabi account and reset it to its original state after unauthorized access. - [Custom email domain requirements](https://help.kajabi.com/articles/account-settings/notifications/custom-email-domain-requirements.md): Strict DMARC is required for all custom email domains to protect deliverability and security. - [Customer Welcome Email Template](https://help.kajabi.com/articles/account-settings/notifications/customer-welcome-email-update.md): The Customer Welcome Email Template uses a magic link for streamlined onboarding. - [Edit automated email notifications](https://help.kajabi.com/articles/account-settings/notifications/edit-automated-email-notifications.md): Edit automated emails to align with your branding and messaging. - [Google's email sending requirements](https://help.kajabi.com/articles/account-settings/notifications/googles-new-email-sending-requirements-and-what-they-mean-for-you.md): Kajabi keeps you compliant with Google's bulk sender requirements automatically. - [Add a DMARC record to DNS](https://help.kajabi.com/articles/account-settings/notifications/how-to-add-a-dmarc-record-to-your-dns.md): Configure a DMARC record in DNS to increase email deliverability and security. - [Add brand logo and colors to email templates](https://help.kajabi.com/articles/account-settings/notifications/how-to-add-your-brand-logo-and-colors-to-the-auto-generated-email-templates.md): Establish brand recognition by adding your logo to automated emails sent by your site. - [Change transactional email sender information](https://help.kajabi.com/articles/account-settings/notifications/how-to-change-your-transactional-email-sender-information.md): Update the sender name, email address, and reply-to address for transactional emails. - [Unsubscribe from Kajabi marketing emails](https://help.kajabi.com/articles/account-settings/notifications/how-to-unsubscribe-from-kajabis-marketing-emails.md): Stop receiving promotional emails from Kajabi through your notification settings or email footer links. - [Subscription cancellation notifications](https://help.kajabi.com/articles/account-settings/notifications/subscription-cancellation-notifications.md): Receive notifications when a customer cancels their subscription. - [Update email notifications](https://help.kajabi.com/articles/account-settings/notifications/update-email-notifications.md): Manage email notification preferences for marketing, security, payments, and data exports. - [Account users](https://help.kajabi.com/articles/account-settings/users/account-users.md): Add, edit, and manage account users to help run your Kajabi site. - [Use multiple account users simultaneously](https://help.kajabi.com/articles/account-settings/users/can-two-owners-of-a-company-use-the-platform-at-the-same-time.md): All Kajabi plans support multiple users logged in at the same time. - [Set up a Kajabi Amplify profile and run promotions](https://help.kajabi.com/articles/amplify/set-up-an-amplify-profile.md): Earn revenue by featuring curated experts in your email broadcasts, or grow by getting featured in others'. - [Add Google Tag Manager to a site](https://help.kajabi.com/articles/analytics/add-google-tag-manager-to-your-site.md): Monitor site performance, conversion rates, and more by adding Google Tag Manager code to your site. - [Analytics benchmarking](https://help.kajabi.com/articles/analytics/analytics-benchmarking.md): Compare your performance against thousands of successful Kajabi Heroes with Benchmarking. - [Analytics overview](https://help.kajabi.com/articles/analytics/analytics-overview.md): Customize your dashboard to highlight key business metrics and access detailed reports. - [View Analytics reports](https://help.kajabi.com/articles/analytics/analytics-reports.md): Track revenue, subscriptions, offers, customers, and more with Analytics reports. - [Track individual learner progress](https://help.kajabi.com/articles/analytics/can-i-track-individual-learner-progress.md): Track how far customers are in your course, assessment completion, and video watch progress. - [Trace individual learning paths](https://help.kajabi.com/articles/analytics/can-we-trace-individual-learning-paths-for-each-customer-with-kajabi.md): Trace and track individual learning paths for customers. - [View audio stats](https://help.kajabi.com/articles/analytics/how-to-view-audio-stats.md): Measure how your audio performs on Blog Posts and Course Lessons. - [View analytics from a specific date range](https://help.kajabi.com/articles/analytics/how-to-view-sales-and-other-analytics-from-a-specific-date-range.md): Track analytics daily, weekly, monthly, annually, or for any custom date range. - [View video stats](https://help.kajabi.com/articles/analytics/how-to-view-video-stats.md): Measure video performance on your site Pages and Course Lessons. - [View the Email Click Report](https://help.kajabi.com/articles/analytics/how-to-view-your-email-click-report.md): Access the Email Click Report to see which links are being clicked. - [Insights overview](https://help.kajabi.com/articles/analytics/insights-overview.md): Understand your contacts and their engagement with your marketing to improve outreach. - [Media Stats overview](https://help.kajabi.com/articles/analytics/media-stats-overview.md): Review media statistics for videos and audio uploaded to Website Pages, Landing Pages, and Course Lessons. - [Report: Revenue Recovered from Abandoned Checkout Emails](https://help.kajabi.com/articles/analytics/report-abandoned-checkout.md) - [Report: Affiliates](https://help.kajabi.com/articles/analytics/report-affiliates.md): View affiliate stats to see performance, commission earned, and customers referred. - [Report: Average subscription revenue per user over time](https://help.kajabi.com/articles/analytics/report-average-subscription-revenue-per-user-over-time.md): Track average revenue per user (ARPU) from subscriptions to identify customer value trends. - [Report: Canceled payment plans over time](https://help.kajabi.com/articles/analytics/report-canceled-payment-plans-over-time.md): Track payment plan cancellations and identify common cancellation reasons. - [Report: Canceled subscriptions over time](https://help.kajabi.com/articles/analytics/report-canceled-subscriptions-over-time.md): Track subscription cancellations and identify common cancellation reasons. - [Report: Cart orders over time](https://help.kajabi.com/articles/analytics/report-cart-orders-over-time.md): Track cart-based orders, revenue, average order value, and items per order. - [Report: Churn rate of subscriptions over time](https://help.kajabi.com/articles/analytics/report-churn-rate-of-subscriptions-over-time.md): Track the percentage of subscriptions canceled and understand retention trends. - [Report: Free offers over time](https://help.kajabi.com/articles/analytics/report-free-offers-over-time.md): Track the total number of free offers purchased over time. - [Report: Gross revenue](https://help.kajabi.com/articles/analytics/report-gross-revenue.md): Track total gross revenue generated over time including all paid purchases. - [Report: Monthly recurring revenue from payment plans](https://help.kajabi.com/articles/analytics/report-monthly-recurring-revenue-from-payment-plans.md): Track MRR from payment plans to measure recurring revenue growth. - [Report: Monthly recurring revenue from subscriptions](https://help.kajabi.com/articles/analytics/report-monthly-recurring-revenue-from-subscriptions.md): Track MRR from subscriptions to measure recurring revenue growth and stability. - [Report: Net revenue](https://help.kajabi.com/articles/analytics/report-net-revenue.md): Track total revenue after refunds and discounts are removed. - [Report: New contacts over time](https://help.kajabi.com/articles/analytics/report-new-contacts-over-time.md): Track contact list growth and monitor fluctuations in new contacts. - [Report: New payment plans over time](https://help.kajabi.com/articles/analytics/report-new-payment-plans-over-time.md): Track new payment plan counts and gross revenue over time. - [Report: New subscriptions over time](https://help.kajabi.com/articles/analytics/report-new-subscriptions-over-time.md): Track new subscription counts and gross revenue over time. - [Report: Offer purchases over time](https://help.kajabi.com/articles/analytics/report-offer-purchases-over-time.md): Track offer purchase quantities, gross revenue, and first vs returning purchases. - [Report: Offers sold](https://help.kajabi.com/articles/analytics/report-offers-sold.md): Understand what offers were sold in a given time frame and measure marketing impact. - [Report: Opt-ins](https://help.kajabi.com/articles/analytics/report-opt-ins.md): Track form performance and identify which pages collect the most submissions. - [Report: Page views](https://help.kajabi.com/articles/analytics/report-page-views.md): Track page views and unique page views across your site. - [Report: Payment plan payments over time](https://help.kajabi.com/articles/analytics/report-payment-plan-payments-over-time.md): Track gross revenue and transaction counts from payment plans including forecasted payments. - [Report: Payment plan status by offer](https://help.kajabi.com/articles/analytics/report-payment-plan-status-by-offer.md): Track current payment plan statuses by offer including active, trialing, paused, and past due. - [Report: Payments by country and state](https://help.kajabi.com/articles/analytics/report-payments-by-country-and-state.md): Track payments by geographic location entered during checkout. - [Report: Payments by offer](https://help.kajabi.com/articles/analytics/report-payments-by-offer.md): Track gross revenue and quantity of payments by offer to identify top performers. - [Report: Payments by payment method](https://help.kajabi.com/articles/analytics/report-payments-by-payment-method.md): Track payments by payment method such as credit card, ApplePay, and more. - [Report: Payments by pricing type](https://help.kajabi.com/articles/analytics/report-payments-by-pricing-type.md): Track payments by pricing type including one-time, subscriptions, and payment plans. - [Report: Product progress](https://help.kajabi.com/articles/analytics/report-product-progress.md): Track your customer's progress through courses, memberships, or products. - [Report: Refunds](https://help.kajabi.com/articles/analytics/report-refunds.md): Track total refunds issued over time including full and partial refunds. - [Report: Subscription metrics](https://help.kajabi.com/articles/analytics/report-subscription-metrics.md): Track MRR, ARPU, and Churn to understand your subscription-based products. - [Report: Subscription payment retention over time](https://help.kajabi.com/articles/analytics/report-subscription-payment-retention-over-time.md): Track the percentage of customers who make each subsequent payment by cohort. - [Report: Subscription status by offer](https://help.kajabi.com/articles/analytics/report-subscription-status-by-offer.md): Track current subscription statuses by offer including active, trialing, paused, and past due. - [Report: Top customers](https://help.kajabi.com/articles/analytics/report-top-customers.md): Identify your highest-value customers ranked by total purchase value. - [Understand elevated 404 page views](https://help.kajabi.com/articles/analytics/why-do-i-have-so-many-views-on-my-404-page.md): Understand why your 404 page may show a high number of views. - [Connect Google Analytics with Kajabi](https://help.kajabi.com/articles/api-integrations/analytics-integrations/connect-google-analytics-with-kajabi.md): Integrate Google Analytics with Kajabi to track website traffic, visitor behavior, and conversions. - [Connect Crazy Egg to Kajabi](https://help.kajabi.com/articles/api-integrations/analytics-integrations/how-to-connect-crazy-egg-to-kajabi.md): Integrate Crazy Egg heat map analytics with your Kajabi site to track visitor behavior. - [Integrate GA4 tags with Kajabi](https://help.kajabi.com/articles/api-integrations/analytics-integrations/how-to-integrate-ga4-tags-with-kajabi.md): Set up Google Analytics 4 (GA4) on your Kajabi site for detailed visitor insights. - [Use Kajabi with Segment](https://help.kajabi.com/articles/api-integrations/analytics-integrations/how-to-use-kajabi-with-segment.md): Connect Segment to your Kajabi site to collect and send customer data to analytics tools. - [Meta Pixel enhancements](https://help.kajabi.com/articles/api-integrations/analytics-integrations/meta-pixel-enhancements.md): Integrate your Kajabi site with the latest Meta Pixel enhancements. - [Meta Pixel with Kajabi](https://help.kajabi.com/articles/api-integrations/analytics-integrations/meta-pixel-with-kajabi.md): Install and configure Meta Pixel to measure advertising effectiveness on your Kajabi site. - [Google Analytics data collection](https://help.kajabi.com/articles/api-integrations/analytics-integrations/what-data-does-google-analytics-collect.md): Understand the types of data Google Analytics tracks and how purchase events work with Kajabi. - [3 considerations for Creator.io chatbot setup](https://help.kajabi.com/articles/api-integrations/creatorio/3-things-to-consider-when-setting-up-your-creatorio-chatbot.md): Maximize your Creator.io chatbot by understanding your business goals, content types, and optimal placement. - [Creator.io settings](https://help.kajabi.com/articles/api-integrations/creatorio/creatorio-settings.md): View usage limits, manage your account, and upgrade or downgrade your Creator.io plan. - [Create a custom chatbot with Creator.io](https://help.kajabi.com/articles/api-integrations/creatorio/how-to-create-a-custom-chatbot-with-creatorio.md): Provide 24/7 customer support and gather leads with a Creator.io chatbot on your Kajabi site. - [Create a sales chatbot with Creator.io](https://help.kajabi.com/articles/api-integrations/creatorio/how-to-create-a-sales-chatbot-with-creatorio.md): Scale your business with Creator.io chatbots by leveraging the Sales Template. - [Use Creator.io chat records to improve site FAQs](https://help.kajabi.com/articles/api-integrations/creatorio/how-to-use-creatorio-chat-records-to-improve-your-sites-faqs.md): Review chatbot conversations to build relevant FAQs for your site. - [Use freebies to improve lead capture](https://help.kajabi.com/articles/api-integrations/creatorio/how-to-use-freebies-to-improve-lead-capture.md): Encourage site visitors to share contact information and grow your list with freebies. - [Upload resources to Creator.io](https://help.kajabi.com/articles/api-integrations/creatorio/what-resources-should-i-upload-to-creatorio.md): Maximize your Creator.io chatbot by uploading essential content like Q&A documents, videos, and courses. - [Use ActiveCampaign with Kajabi](https://help.kajabi.com/articles/api-integrations/email-integrations/how-to-use-activecampaign-with-kajabi.md): Send Kajabi form submissions to ActiveCampaign for email marketing and automation. - [Use AWeber with Kajabi](https://help.kajabi.com/articles/api-integrations/email-integrations/how-to-use-aweber-with-kajabi.md): Send Kajabi form submissions to your AWeber list. - [Use ConvertKit with Kajabi](https://help.kajabi.com/articles/api-integrations/email-integrations/how-to-use-convertkit-with-kajabi.md): Send Kajabi form submissions to ConvertKit for email marketing and automation. - [Use Drip with Kajabi](https://help.kajabi.com/articles/api-integrations/email-integrations/how-to-use-drip-with-kajabi.md): Connect Kajabi Forms to Drip to send opt-ins directly to your Drip account. - [Use MailChimp with Kajabi](https://help.kajabi.com/articles/api-integrations/email-integrations/how-to-use-mailchimp-with-kajabi.md): Integrate MailChimp with Kajabi to send form submissions to your email marketing lists. - [MailChimp behavior on subscription cancellation](https://help.kajabi.com/articles/api-integrations/email-integrations/if-a-member-cancels-their-subscription-will-they-be-removed-from-my-mailchimp-lists.md): Understand how the MailChimp integration handles subscription cancellations in Kajabi. - [Check out as a guest through PayPal](https://help.kajabi.com/articles/api-integrations/payment-integrations/can-you-checkout-as-a-guest-through-paypal.md): Learn when customers can use PayPal guest checkout versus when they need a PayPal account. - [Connect a third-party payment gateway to Kajabi](https://help.kajabi.com/articles/api-integrations/payment-integrations/connect-a-third-party-payment-gateway-to-kajabi.md): Connect third-party checkout software and payment gateways to accept payments on Kajabi. - [Connect PayPal to Kajabi](https://help.kajabi.com/articles/api-integrations/payment-integrations/connect-paypal-to-kajabi.md): Connect a PayPal account to Kajabi to accept payments securely. - [Connect Stripe to Kajabi](https://help.kajabi.com/articles/api-integrations/payment-integrations/connect-stripe-to-kajabi.md): Connect a Stripe account to Kajabi to accept payments. - [Detach Stripe and PayPal from Kajabi](https://help.kajabi.com/articles/api-integrations/payment-integrations/detach-stripe-and-paypal-from-kajabi.md): Disconnect your Stripe and PayPal payment processors from Kajabi and understand the impact on existing subscriptions and transactions. - [Send a receipt with PayPal](https://help.kajabi.com/articles/api-integrations/payment-integrations/how-do-i-send-a-receipt-with-paypal.md): PayPal automatically sends receipts to customers after purchase. - [How Kajabi supports payment authentication](https://help.kajabi.com/articles/api-integrations/payment-integrations/how-kajabi-supports-payment-authentication.md): Comply with authentication guidelines like SCA and customize the purchase experience for your customers. - [Cancel and refund a payment in Stripe](https://help.kajabi.com/articles/api-integrations/payment-integrations/how-to-cancel-and-refund-a-payment-in-stripe.md): Cancel subscriptions and process refunds directly in Stripe. - [Cancel and refund a transaction in PayPal](https://help.kajabi.com/articles/api-integrations/payment-integrations/how-to-cancel-and-refund-a-transaction-in-paypal.md): Process refunds and cancel subscriptions through your PayPal dashboard. - [Manage failed payments in PayPal](https://help.kajabi.com/articles/api-integrations/payment-integrations/how-to-manage-failed-payments-in-paypal.md): Monitor and locate failed payments in PayPal. - [Manage failed payments in Stripe](https://help.kajabi.com/articles/api-integrations/payment-integrations/how-to-manage-failed-payments-in-stripe.md): Customize Stripe's Smart Retries to specify retry days before your customer's subscription is canceled. - [Send a receipt in Stripe](https://help.kajabi.com/articles/api-integrations/payment-integrations/how-to-send-a-receipt-in-stripe.md): Send receipts to individual customers or configure automatic receipts for every successful Stripe payment. - [Set up automated emails in Stripe for failed payments](https://help.kajabi.com/articles/api-integrations/payment-integrations/how-to-set-up-automated-emails-with-stripe-when-payments-fail.md): Configure Stripe to automatically email customers when a payment fails. - [Upgrade a PayPal account](https://help.kajabi.com/articles/api-integrations/payment-integrations/how-to-upgrade-your-paypal-account.md): Upgrade your PayPal account to continue accepting payments and receive better support from the Kajabi team. - [View all transactions in PayPal](https://help.kajabi.com/articles/api-integrations/payment-integrations/how-to-view-all-transactions-in-paypal.md): View PayPal transactions directly in your PayPal account for complete transaction records. - [Payment options available with Kajabi](https://help.kajabi.com/articles/api-integrations/payment-integrations/payment-options-available-with-kajabi.md): Kajabi offers three payment gateways—Kajabi Payments, Stripe, and PayPal—to collect payment for the value you offer your audience. - [PayPal integration troubleshooting](https://help.kajabi.com/articles/api-integrations/payment-integrations/paypal-integration-troubleshooting.md): Troubleshoot common PayPal integration issues with this guide. - [View a customer's next billing date in Stripe](https://help.kajabi.com/articles/api-integrations/payment-integrations/where-to-view-your-customers-next-billing-date-in-stripe.md): Stripe allows you to see your customer's payment information, including their next billing date. - [Kajabi public API availability](https://help.kajabi.com/articles/api-integrations/public-api/does-kajabi-have-a-public-api.md): Explore Kajabi's public API and alternative integration options. - [Use Kajabi's public API](https://help.kajabi.com/articles/api-integrations/public-api/using-kajabis-public-api.md): Create API keys and access documentation for Kajabi's public API. - [Third party integrations](https://help.kajabi.com/articles/api-integrations/webhooks/third-party-integrations.md): Connect Kajabi with third-party platforms to extend your site's functionality with email, analytics, and payment integrations. - [Troubleshoot webhooks](https://help.kajabi.com/articles/api-integrations/webhooks/troubleshooting-webhooks.md): Resolve common webhook payload errors and learn best practices for connecting webhooks in Kajabi. - [Use webhooks with Kajabi](https://help.kajabi.com/articles/api-integrations/webhooks/webhooks-explained.md): Learn how to use Inbound and Outbound Webhooks to automate communication between Kajabi and other applications. - [Outbound webhook data reference](https://help.kajabi.com/articles/api-integrations/webhooks/what-information-is-sent-with-outbound-webhooks.md): Reference the fields sent to third-party applications when using Kajabi Outbound Webhooks. - [Create a certificate with Google Slides](https://help.kajabi.com/articles/api-integrations/zapier/how-to-create-a-certificate-with-google-slides.md): Send your customers a personalized Certificate of Completion using Google Slides and Zapier when they complete your Course. - [Locate the Kajabi API key and API secret](https://help.kajabi.com/articles/api-integrations/zapier/how-to-locate-your-kajabi-api-key-and-api-secret.md): Find your Kajabi API Key and API Secret to connect your site to third-party applications. - [Send certificates of completion with Accredible](https://help.kajabi.com/articles/api-integrations/zapier/how-to-send-certificates-of-completion-with-accredible.md): Automatically send certificates of completion by connecting Kajabi and Accredible with Zapier. - [Troubleshoot Zapier](https://help.kajabi.com/articles/api-integrations/zapier/troubleshooting-zapier.md): Resolve common issues when creating integrations between Kajabi and Zapier. - [Use Zapier with Kajabi](https://help.kajabi.com/articles/api-integrations/zapier/use-zapier-with-kajabi.md): Connect Kajabi to various third-party apps using Zapier with outbound and inbound webhooks. - [Cofounder FAQs and limitations](https://help.kajabi.com/articles/cofounder/cofounder-faqs-and-limitations.md): Get answers to common questions and understand what Cofounder can and cannot do. - [Cofounder overview](https://help.kajabi.com/articles/cofounder/cofounder-overview.md): Understand what Cofounder is, how it works, and how it helps you turn ideas into income. - [Use Cofounder before signing up for Kajabi](https://help.kajabi.com/articles/cofounder/use-cofounder-before-signing-up-for-kajabi.md): Work with Cofounder to clarify your business idea before creating a Kajabi account. - [Generate multiple Assessments from a question list](https://help.kajabi.com/articles/contacts/create-manage-and-share-assessments/can-i-generate-different-assessments-based-on-an-extensive-list-of-questions.md): Create multiple Assessments with up to 100 questions each in Kajabi. - [Include an opt-in with an Assessment](https://help.kajabi.com/articles/contacts/create-manage-and-share-assessments/can-i-include-an-opt-in-with-my-assessment.md): Assessments on landing pages include a default opt-in form to help build your list. - [Limit Assessment retake attempts](https://help.kajabi.com/articles/contacts/create-manage-and-share-assessments/can-i-limit-the-number-of-times-a-user-can-retake-an-assessment.md): Assessments do not currently support limiting the number of retake attempts. - [Create and customize Assessments](https://help.kajabi.com/articles/contacts/create-manage-and-share-assessments/create-and-customize-assessments.md): Create standardized tests, questionnaires, and surveys. - [Add an Assessment to a Course](https://help.kajabi.com/articles/contacts/create-manage-and-share-assessments/how-to-add-an-assessment-to-your-course-product.md): Attach an Assessment to a Course Lesson to create tests and surveys within Products. - [Add questions to an Assessment](https://help.kajabi.com/articles/contacts/create-manage-and-share-assessments/how-to-add-questions-to-your-assessment.md): Configure up to 100 questions across multiple question types in Kajabi Assessments. - [Duplicate an Assessment](https://help.kajabi.com/articles/contacts/create-manage-and-share-assessments/how-to-duplicate-your-assessment.md): Copy an existing Assessment for use in multiple locations on your site. - [Share an Assessment](https://help.kajabi.com/articles/contacts/create-manage-and-share-assessments/how-to-share-an-assessment.md): Distribute Assessments built in Kajabi through direct links or custom landing pages. - [Send Assessment results to Google Sheets](https://help.kajabi.com/articles/contacts/create-manage-and-share-assessments/send-assessment-results-to-google-sheets.md): Send results to an external source like Google Sheets using Zapier. - [View and grade Assessment results](https://help.kajabi.com/articles/contacts/create-manage-and-share-assessments/view-and-grade-assessment-results.md): View, grade, and export Assessment results from completed submissions. - [Compare Quizzes and Assessments](https://help.kajabi.com/articles/contacts/create-manage-and-share-assessments/what-is-the-difference-between-quizzes-and-assessments.md): Understand the differences between Assessments and Quizzes and when to use each. - [Apply filters to the Contacts tab](https://help.kajabi.com/articles/contacts/manage-your-contacts/apply-filters-to-your-contacts-tab.md): Create filters to better manage and organize contacts. - [Export product purchase history by customer](https://help.kajabi.com/articles/contacts/manage-your-contacts/can-i-export-a-history-of-all-products-bought-by-customer-and-date.md): Generate an Offers Sold Report showing which products were purchased by each customer and when. - [Export registrations for trainings and webinars](https://help.kajabi.com/articles/contacts/manage-your-contacts/can-i-export-registrations-for-in-person-trainings-and-webinars-andor-sold-digital-courses-including-product-details-xlsx-or-json.md): Export Offers sold for in-person trainings and webinars via a CSV file. - [Resubscribe an accidentally unsubscribed contact](https://help.kajabi.com/articles/contacts/manage-your-contacts/can-i-resubscribe-a-contact-if-i-accidentally-unsubscribe-them.md): Recover contacts that were unsubscribed by accident using a Double Opt-in Form. - [Link multiple learners to one customer account](https://help.kajabi.com/articles/contacts/manage-your-contacts/can-multiple-learners-be-linked-to-one-customer-account.md): Each customer requires their own account to access purchased or granted goods and services. - [Understand contact exclusion](https://help.kajabi.com/articles/contacts/manage-your-contacts/contact-exclusion-overview-and-faq.md): Contact exclusion protects your mailing list health and sender reputation by filtering out high-risk, inactive email addresses. - [Use Contact Preview](https://help.kajabi.com/articles/contacts/manage-your-contacts/contact-preview-overview.md): Preview contacts and perform quick actions without leaving the filtered contact list. - [Contact search improvements](https://help.kajabi.com/articles/contacts/manage-your-contacts/contact-search-improvements.md): Upgraded contact search provides faster performance, especially for large contact lists. - [Understand contact usage limits](https://help.kajabi.com/articles/contacts/manage-your-contacts/contact-usage-limits.md): Manage your account effectively and avoid interruptions by staying within contact usage limits. - [Explore the Contacts tab](https://help.kajabi.com/articles/contacts/manage-your-contacts/contacts-tab-overview.md): Use the Contacts tab as a built-in CRM to view, organize, and manage contact information on Kajabi. - [Create a custom affiliate signup page](https://help.kajabi.com/articles/contacts/manage-your-contacts/create-a-custom-affiliate-signup-page.md): Design a custom affiliate onboarding page using Kajabi Pages while capturing registrations. - [Update customer settings](https://help.kajabi.com/articles/contacts/manage-your-contacts/customer-update-of-customer-settings.md): Customers can update their account information, email preferences, billing, and password from their settings. - [Contacts tab filters](https://help.kajabi.com/articles/contacts/manage-your-contacts/defining-contacts-tab-filters.md): Use filters to narrow contact results and create segments. - [Understand comment retention after revoking access](https://help.kajabi.com/articles/contacts/manage-your-contacts/do-comments-in-a-product-remain-for-customers-that-have-their-offer-access-revoked.md): Customer comments in a Product remain unless the contact or comment is manually deleted. - [Understand single sign-on (SSO) support](https://help.kajabi.com/articles/contacts/manage-your-contacts/does-the-system-use-single-sign-on-sso.md): Kajabi does not currently support single sign-on (SSO). - [Email and contact list enhancement FAQs](https://help.kajabi.com/articles/contacts/manage-your-contacts/email-contact-list-enhancement-faqs.md): Answers to common questions about email and contact list enhancements to improve deliverability. - [Enable and disable subscription self-cancellations](https://help.kajabi.com/articles/contacts/manage-your-contacts/enable-and-disable-customer-subscription-self-cancelations.md): Control whether customers can cancel their own subscriptions from your site. - [Format a CSV for contact imports](https://help.kajabi.com/articles/contacts/manage-your-contacts/having-issues-formatting-a-csv-for-contact-imports.md): Resolve CSV import errors by converting the file to UTF-8 encoding in Excel or Numbers. - [Hide contacts](https://help.kajabi.com/articles/contacts/manage-your-contacts/hiding-your-contacts.md): Declutter the Contacts tab by hiding contacts you don't need to see regularly. - [Maintain a healthy mailing list with auto unsubscribe](https://help.kajabi.com/articles/contacts/manage-your-contacts/how-auto-unsubscribe-helps-you-maintain-a-healthy-mailing-list.md): Auto unsubscribe removes Hard Bounced and Complained contacts to improve deliverability and ensure content reaches inboxes. - [Maintain a healthy mailing list with email validation and contact exclusion](https://help.kajabi.com/articles/contacts/manage-your-contacts/how-email-address-validation-and-contact-exclusion-helps-you-maintain-a-healthy-mailing-list.md): Build a strong sender reputation and increase engagement using email address validation and contact exclusion. - [Understand Kajabi login reminders for customers](https://help.kajabi.com/articles/contacts/manage-your-contacts/how-kajabi-reminds-your-new-customers-to-log-in.md): Kajabi automatically sends login reminders to customers after they purchase or are granted an Offer. - [Maintain a healthy mailing list with reCAPTCHA](https://help.kajabi.com/articles/contacts/manage-your-contacts/how-recaptcha-helps-you-maintain-a-healthy-mailing-list.md): Validate form submissions and protect your site from spam using reCAPTCHA to build a high-quality contact list. - [Add a note to a contact profile](https://help.kajabi.com/articles/contacts/manage-your-contacts/how-to-add-a-note-to-a-contact-profile.md): Create and manage notes on contact and customer profiles in the Contacts tab. - [Cancel a customer's subscription](https://help.kajabi.com/articles/contacts/manage-your-contacts/how-to-cancel-your-customers-subscription.md): End future payments and remove access to the Products included with a customer's subscription. - [Change a customer's start date](https://help.kajabi.com/articles/contacts/manage-your-contacts/how-to-change-a-customers-start-date.md): Adjust a customer's start date to grant access to dripped content in a Product. - [Check for duplicate contacts](https://help.kajabi.com/articles/contacts/manage-your-contacts/how-to-check-for-duplicate-contacts.md): Search the Contacts tab by name to identify contacts with multiple email addresses. - [Collect additional information from existing contacts](https://help.kajabi.com/articles/contacts/manage-your-contacts/how-to-collect-additional-information-from-existing-contacts.md): Gather more details from contacts already on your list using a landing page form and email sequence. - [Define customer activity](https://help.kajabi.com/articles/contacts/manage-your-contacts/how-to-define-customer-activity.md): Understand which actions count as activity on Kajabi and contribute to a customer's last activity info. - [Delete a contact](https://help.kajabi.com/articles/contacts/manage-your-contacts/how-to-delete-a-contact.md): Permanently remove contacts and customers, including all related records and future payments. - [Edit contact information](https://help.kajabi.com/articles/contacts/manage-your-contacts/how-to-edit-your-contacts-information.md): Update the name, email, and form submission answers for contacts from the Contacts tab. - [Export contacts](https://help.kajabi.com/articles/contacts/manage-your-contacts/how-to-export-your-contacts.md): Download a CSV of customers and contacts from the Contacts tab. - [Import contacts into Kajabi](https://help.kajabi.com/articles/contacts/manage-your-contacts/how-to-import-contacts-into-kajabi.md): Use the import tool to add and update contacts on Kajabi using CSV files, copy and paste, or direct entry. - [Manage contact profiles](https://help.kajabi.com/articles/contacts/manage-your-contacts/how-to-manage-your-contacts-profiles.md): Track activity, perform actions, and update details from a contact's profile page. - [Manually add a customer to a site](https://help.kajabi.com/articles/contacts/manage-your-contacts/how-to-manually-add-a-new-customer-to-your-site.md): Add a single Customer from the Kajabi dashboard and optionally grant an Offer at the same time. - [Merge contacts](https://help.kajabi.com/articles/contacts/manage-your-contacts/how-to-merge-contacts.md): Combine duplicate contacts when a contact has created two accounts with separate emails on a site. - [Re-engage inactive subscribers](https://help.kajabi.com/articles/contacts/manage-your-contacts/how-to-re-engage-inactive-subscribers.md): Identify dormant subscribers, send a re-engagement email campaign, and unsubscribe contacts that do not re-engage. - [Reset a customer's password](https://help.kajabi.com/articles/contacts/manage-your-contacts/how-to-reset-your-customers-password.md): Send a password reset link or create a temporary password for a customer from the Contacts tab. - [Troubleshoot "We could not deliver email" message](https://help.kajabi.com/articles/contacts/manage-your-contacts/how-to-troubleshoot-we-could-not-deliver-email-message-for-your-customers.md): Help customers update their email address and understand the behavior causing this delivery error. - [Unsubscribe a contact from marketing emails](https://help.kajabi.com/articles/contacts/manage-your-contacts/how-to-unsubscribe-a-contact-from-marketing-emails.md): Manually unsubscribe contacts from all marketing emails, including Email Broadcasts, Email Sequences, and Event Emails. - [Use Google Sheets to combine first and last name](https://help.kajabi.com/articles/contacts/manage-your-contacts/how-to-use-google-sheets-to-combine-first-and-last-name.md): Combine the first and last name into a single column in a CSV file to successfully import multiple contacts onto a site. - [Manage customer billing and payment methods](https://help.kajabi.com/articles/contacts/manage-your-contacts/how-your-customers-can-manage-their-billing-and-payment-methods.md): Customers can view, update, and manage the payment methods saved to their account, and understand which subscriptions and payment plans are charged to each card. - [Customer update of email preferences](https://help.kajabi.com/articles/contacts/manage-your-contacts/how-your-customers-can-update-their-email-preferences.md): Guide customers through updating their email preferences directly from their account settings. - [Pause a customer's subscription or payment plan](https://help.kajabi.com/articles/contacts/manage-your-contacts/pause-your-customers-subscription-or-payment-plan.md): Temporarily disable billing for a customer's subscription or payment plan when they are unavailable to be billed. - [Perform bulk actions in the Contacts tab](https://help.kajabi.com/articles/contacts/manage-your-contacts/perform-bulk-actions-in-the-contacts-tab.md): Apply actions to multiple contacts at the same time in the Contacts tab. - [Purchase information page overview](https://help.kajabi.com/articles/contacts/manage-your-contacts/purchase-information-page-overview.md): Navigate the Purchase Information Page to view purchase details, revoke Product access, perform refunds, and more. - [Refund customers](https://help.kajabi.com/articles/contacts/manage-your-contacts/refund-your-customers.md): Issue full or partial refunds to customers directly from a Kajabi account. - [Revoke Product access from a customer](https://help.kajabi.com/articles/contacts/manage-your-contacts/revoke-product-access-from-a-customer.md): Remove a customer's access to a Product after they have finished a course, failed to pay, or failed to comply with terms and conditions. - [Segment contacts](https://help.kajabi.com/articles/contacts/manage-your-contacts/segment-your-contacts.md): Design personalized marketing and efficiently manage your list by segmenting contacts using default and custom Segments. - [Tags overview](https://help.kajabi.com/articles/contacts/manage-your-contacts/tags-overview.md): Add tags to contacts to efficiently manage and organize your contact list. - [Transaction details page overview](https://help.kajabi.com/articles/contacts/manage-your-contacts/transaction-details-page-overview.md): Navigate a customer's Transaction Details page to view purchase details, revoke Product access, perform refunds, and more. - [Preview the customer experience](https://help.kajabi.com/articles/contacts/manage-your-contacts/what-do-my-customers-see.md): Create a test customer account to experience your site from a customer's perspective. - [Understand subscription status](https://help.kajabi.com/articles/contacts/manage-your-contacts/what-does-the-subscription-status-mean.md): The subscription status indicates whether contacts are subscribed to receive marketing emails. - [Understand Gravatar for contact avatars](https://help.kajabi.com/articles/contacts/manage-your-contacts/what-is-gravatar.md): Gravatar works with Kajabi to personalize contacts with globally recognized avatars. - [Distinguish between customers, contacts, and subscribers](https://help.kajabi.com/articles/contacts/manage-your-contacts/what-is-the-difference-between-a-customer-contact-and-a-subscriber.md): Understand the difference between customers, contacts, and subscribers in Kajabi and who is considered an active customer. - [Distinguish between Insights and Analytics](https://help.kajabi.com/articles/contacts/manage-your-contacts/what-is-the-difference-between-insights-and-analytics.md): Understand the difference between People Insights and Site Analytics to make better data-driven decisions. - [Distinguish between revoking an Offer and canceling payments](https://help.kajabi.com/articles/contacts/manage-your-contacts/what-is-the-difference-between-revoking-an-offer-and-payment-cancelations.md): Understand the difference between revoking Product access and canceling payments to manage customer subscriptions effectively. - [Troubleshoot customer login issues](https://help.kajabi.com/articles/contacts/manage-your-contacts/what-to-do-if-your-customers-cant-log-in.md): Help customers resolve common login problems with step-by-step troubleshooting. - [Fix missing contact names in the Contacts tab](https://help.kajabi.com/articles/contacts/manage-your-contacts/why-are-my-contact-names-not-displayed-in-the-contacts-tab.md): Resolve contacts appearing nameless by mapping custom name fields to the default Name column. - [Troubleshoot missing Customer Welcome Emails](https://help.kajabi.com/articles/contacts/manage-your-contacts/why-didnt-my-new-customer-receive-an-email-containing-their-login-information.md): Only customers who are manually added to your site receive an email containing their login information. - [Understand customer lifetime access to Products](https://help.kajabi.com/articles/contacts/manage-your-contacts/will-my-customers-have-lifetime-access-to-my-products.md): Customers retain access to purchased Products as long as specific conditions are met. - [Foundations: Start here](https://help.kajabi.com/articles/get-started/foundations/foundations-start-here.md): Plan, launch, and scale your business on Kajabi with this step-by-step guide. - [Step 1: Validate an idea](https://help.kajabi.com/articles/get-started/foundations/step-1-validate-your-idea.md): Confirm product market fit before building by polling your existing network. - [Step 2: Customize global Branding Settings](https://help.kajabi.com/articles/get-started/foundations/step-2-customize-your-global-branding-settings.md): Adjust fonts, colors, and logos to create a cohesive, professional brand experience across your Kajabi site. - [Step 3: Add instructor details](https://help.kajabi.com/articles/get-started/foundations/step-3-add-your-instructor-details.md): Add an instructor name, biography, and photo to personalize Course and Lesson pages. - [Step 4: Build a waitlist](https://help.kajabi.com/articles/get-started/foundations/step-4-build-a-waitlist.md): Capture interested customers before an Offer launches by creating a waitlist form and landing page. - [Step 5: Connect Kajabi Payments](https://help.kajabi.com/articles/get-started/foundations/step-5-connect-payment-integrations.md): Connect Kajabi Payments or PayPal to start collecting payments for your Offers. - [Step 6: Create a product](https://help.kajabi.com/articles/get-started/foundations/step-6-create-a-product.md): Build a Course, Community, Newsletter, Podcast, or Coaching product on Kajabi. - [Step 7: Price a product](https://help.kajabi.com/articles/get-started/foundations/step-7-price-your-product.md): Create an Offer and set pricing to monetize a product on Kajabi. - [Step 8: Design a website](https://help.kajabi.com/articles/get-started/foundations/step-8-design-your-website.md): Customize a website and refine the customer experience using Kajabi's Website Builder. - [Step 9: Test the journey](https://help.kajabi.com/articles/get-started/foundations/step-9-test-the-journey.md): Experience what your customers will see by making a test purchase of an Offer. - [Add Tags with Automations](https://help.kajabi.com/articles/marketing/automations/add-tags-with-automations.md): Streamline your contact management by automating Tag assignment as your business scales. - [Add Automations to Course Lessons](https://help.kajabi.com/articles/marketing/automations/automations-in-course-lessons.md): Automate actions like sending an email, registering for an event, or granting an Offer when a Lesson is completed. - [Automations overview](https://help.kajabi.com/articles/marketing/automations/automations-overview.md): Streamline processes and automate actions in Kajabi using conditional logic. - [Basic vs. Advanced Automations](https://help.kajabi.com/articles/marketing/automations/basic-vs-advanced-automations.md): Understand the differences between Basic and Advanced Automations based on your Kajabi plan. - [Send a Certificate of Completion with Automations](https://help.kajabi.com/articles/marketing/automations/how-to-send-a-certificate-of-completion-with-automations.md): Send a Certificate of Completion directly from Kajabi when your customer completes a Course. - [Use a Wait Node with Automations](https://help.kajabi.com/articles/marketing/automations/how-to-use-a-wait-node-with-automations.md): Add delays between steps in your Automations for timed follow-ups, delayed coupon delivery, or drip-style sequences. - [Use Automation triggers, flows, and branches](https://help.kajabi.com/articles/marketing/automations/how-to-use-automation-triggers-flows-and-branches.md): Consolidate and organize Automations using side-by-side flows, multiple triggers, and branching logic. - [Remove Automations](https://help.kajabi.com/articles/marketing/automations/remove-automations.md): Delete Automations from different locations in your Kajabi Dashboard. - [Understand Automation components](https://help.kajabi.com/articles/marketing/automations/understanding-automation-components.md): Get to know the building blocks of Automations, including triggers, actions, and conditional filters. - [Upgrade and downgrade Offers with Automations](https://help.kajabi.com/articles/marketing/automations/upgrading-downgrading-offers-with-automations.md): Automate changes to your customer's subscription and Offer access using Automations. - [Use search and filter features with Automations](https://help.kajabi.com/articles/marketing/automations/using-the-enhanced-search-filter-features-with-automations.md): Locate and manage your workflows using the redesigned search and filter experience in the visual Automation Builder. - [Explore the upgraded Automations experience](https://help.kajabi.com/articles/marketing/automations/whats-new-with-kajabi-automations.md): Understand what changed with the visual Automation Builder and take full advantage of the latest enhancements. - [Creator Studio](https://help.kajabi.com/articles/marketing/creator-studio/creator-studio.md): Repurpose videos into social media clips, blog posts, emails, and more in minutes. - [Creator Studio permissions](https://help.kajabi.com/articles/marketing/creator-studio/creator-studio-permissions.md): Grant the required permissions for Kajabi to share Creator Studio content to social media. - [Build Creator Studio clips](https://help.kajabi.com/articles/marketing/creator-studio/how-to-build-your-creator-studio-clips.md): Generate Creator Studio clips with manual highlights or Kajabi's AI key moments feature. - [Customize Creator Studio clips](https://help.kajabi.com/articles/marketing/creator-studio/how-to-customize-your-creator-studio-clips.md): Edit and enhance Creator Studio clips with the integrated Adobe Express editor. - [Delete Creator Studio projects and clips](https://help.kajabi.com/articles/marketing/creator-studio/how-to-delete-creator-studio-projects-clips.md): Remove projects or clips from Creator Studio. - [Download transcripts and subtitles with Creator Studio](https://help.kajabi.com/articles/marketing/creator-studio/how-to-download-transcript-and-subtitles-with-creator-studio.md): Download transcript and subtitle files from Creator Studio to use across platforms. - [Manage Creator Studio projects](https://help.kajabi.com/articles/marketing/creator-studio/how-to-manage-your-creator-studio-projects.md): Organize, rename, and create content within Creator Studio projects and video clips. - [Share Creator Studio clips to Facebook](https://help.kajabi.com/articles/marketing/creator-studio/how-to-share-your-creator-studio-clips-to-facebook-from-kajabi.md): Connect the Kajabi Marketing Services App to share Creator Studio clips directly to Facebook Groups. - [Manage the Creator Studio add-on](https://help.kajabi.com/articles/marketing/creator-studio/manage-your-creator-studio-add-on.md): View remaining projects and upgrade or downgrade the Creator Studio add-on. - [Share Creator Studio content](https://help.kajabi.com/articles/marketing/creator-studio/sharing-your-creator-studio-content.md): Share Creator Studio clips directly to Facebook, Instagram, and LinkedIn. - [Troubleshoot Creator Studio clips](https://help.kajabi.com/articles/marketing/creator-studio/troubleshooting-your-creator-studio-clips.md): Resolve error messages and issues with Creator Studio. - [Optimize emails for mobile devices](https://help.kajabi.com/articles/marketing/email-campaigns/a-lot-of-my-email-recipients-read-my-emails-on-mobile-devices-can-kajabi-help-me-provide-a-great-experience-to-those-folks.md): Preview and control how your emails display across desktop, tablet, and mobile devices. - [Add downloadable files to emails](https://help.kajabi.com/articles/marketing/email-campaigns/add-downloadable-files-to-emails.md): Share resources, flyers, and additional information with your email recipients. - [Follow best practices for email subject lines](https://help.kajabi.com/articles/marketing/email-campaigns/best-practices-for-email-subject-lines.md): Write effective subject lines that avoid spam filters and reach your contacts' inboxes. - [Grow and maintain engaged contact lists](https://help.kajabi.com/articles/marketing/email-campaigns/best-practices-for-growing-and-maintaining-your-contact-lists.md): Build and maintain a healthy, organic contact list to improve email marketing results. - [Add an avatar or logo to Email Campaigns](https://help.kajabi.com/articles/marketing/email-campaigns/can-i-add-an-avatarlogo-to-my-email-campaigns.md): Brand the Reply-To sender image displayed to email recipients using an avatar or logo. - [Link videos in emails](https://help.kajabi.com/articles/marketing/email-campaigns/can-i-add-live-videos-that-play-in-my-emails.md): Understand video limitations in emails and use the Video Section to link videos for recipients. - [Change the language for email footer elements](https://help.kajabi.com/articles/marketing/email-campaigns/can-i-change-the-language-for-the-view-in-browser-button-and-address-in-the-footer-of-my-email.md): Update the language for the View in Browser button and address in the email footer. - [Edit an email after sending](https://help.kajabi.com/articles/marketing/email-campaigns/can-i-edit-an-email-after-it-has-been-sent.md): Understand editing limitations for sent emails and learn how to send updated versions. - [Maximize the text box when editing](https://help.kajabi.com/articles/marketing/email-campaigns/can-i-make-the-text-box-larger-when-editing.md): Expand the text editor to full size for easier email editing. - [Turn off the View in Web Browser feature](https://help.kajabi.com/articles/marketing/email-campaigns/can-i-turn-off-the-view-in-web-browser-feature.md): Hide the View in Web Browser link on desktop, mobile, or both. - [Use custom fonts in emails](https://help.kajabi.com/articles/marketing/email-campaigns/can-i-use-custom-fonts-in-my-emails.md): Apply custom fonts to email campaigns using the Visual Editor. - [Classic Email Editor vs Visual Email Editor](https://help.kajabi.com/articles/marketing/email-campaigns/classic-email-editor-vs-visual-email-editor.md): Choose between the Classic Email Editor and Visual Email Editor for email campaigns. - [Connect a custom email domain](https://help.kajabi.com/articles/marketing/email-campaigns/connecting-a-custom-email-domain.md): Connect a custom email domain to Kajabi to brand sender information in marketing emails. - [Connect a custom email domain with Wix](https://help.kajabi.com/articles/marketing/email-campaigns/connecting-a-custom-email-domain-with-wix.md): Understand the limitations of connecting a custom email domain when using Wix as a domain registrar. - [Create an Email Broadcast](https://help.kajabi.com/articles/marketing/email-campaigns/create-an-email-broadcast.md): Set up and send an Email Broadcast to contacts on your list. - [Create an Email Sequence](https://help.kajabi.com/articles/marketing/email-campaigns/create-an-email-sequence.md): Nurture contacts, engage members, and convert leads with automated email sequences. - [Understand email deliverability](https://help.kajabi.com/articles/marketing/email-campaigns/demystifying-email-deliverability.md): Follow the journey of a Kajabi email from draft to final destination and learn how to improve delivery rates. - [Edit an Email Broadcast's scheduled date and time](https://help.kajabi.com/articles/marketing/email-campaigns/edit-an-email-broadcasts-scheduled-date-and-time.md): View and reschedule scheduled Email Broadcasts. - [Email A/B Test distribution](https://help.kajabi.com/articles/marketing/email-campaigns/email-ab-test-distribution.md): Split email recipients between test groups to find the winning Email Broadcast. - [Email A/B Test duration](https://help.kajabi.com/articles/marketing/email-campaigns/email-ab-test-duration.md): Set the Test Duration to determine how long Kajabi collects data before selecting a winning Email Broadcast. - [Email A/B testing best practices](https://help.kajabi.com/articles/marketing/email-campaigns/email-ab-testing-best-practices.md): Improve conversions and gain insight into Email Broadcast performance through A/B testing. - [Email A/B testing overview](https://help.kajabi.com/articles/marketing/email-campaigns/email-ab-testing-overview.md): Optimize Email Broadcasts and increase sales with A/B testing. - [Email Campaigns overview](https://help.kajabi.com/articles/marketing/email-campaigns/email-campaigns-overview.md): Create and use Email Campaigns to advance your online business. - [Email Metrics overview](https://help.kajabi.com/articles/marketing/email-campaigns/email-metrics-overview.md): Understand the metrics available for Email Broadcasts, Sequences, and Event Emails. - [Email Visual Editor overview](https://help.kajabi.com/articles/marketing/email-campaigns/email-visual-editor-overview.md): Use the Visual Editor to create sophisticated, highly branded email campaigns. - [Email Visual Editor templates](https://help.kajabi.com/articles/marketing/email-campaigns/email-visual-editor-templates.md): Use highly customizable templates to create beautiful, brand-forward emails. - [Display a logo in all Email Campaigns](https://help.kajabi.com/articles/marketing/email-campaigns/how-do-i-make-my-logo-appear-in-all-of-my-email-campaigns.md): Upload a logo to automatically appear in Email Broadcasts and Sequences. - [Manage blocked emails from blacklisting or AV software](https://help.kajabi.com/articles/marketing/email-campaigns/how-does-kajabi-manage-blocked-emails-due-to-blacklisting-or-av-software.md): Learn how Kajabi handles blocked emails caused by blacklisting or antivirus software. - [Email Sequence scheduling limits](https://help.kajabi.com/articles/marketing/email-campaigns/how-far-in-advance-can-emails-in-an-email-sequence-be-scheduled.md): Understand the maximum scheduling window for emails in an Email Sequence. - [Comply with privacy regulations using Kajabi](https://help.kajabi.com/articles/marketing/email-campaigns/how-kajabi-helps-you-with-privacy-regulations.md): Leverage Kajabi tools to meet privacy regulations and build a transparent, trustworthy brand. - [Add a GIF to an Email Campaign with EZ GIF](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-add-a-gif-to-your-email-campaign-with-ez-gif.md): Create and include a GIF in Email Campaigns using EZ GIF. - [Add a Video section in Email Campaigns](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-add-a-video-section-in-email-campaigns.md): Add and customize a Video section in Email Campaigns. - [Add and customize a Countdown Timer in Email Campaigns](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-add-and-customize-a-countdown-timer-in-email-campaigns.md): Add and customize a Countdown Timer to create urgency in emails. - [Add and customize a Divider section in Email Campaigns](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-add-and-customize-a-divider-section-in-email-campaigns.md): Visually break up sections in emails with a customizable divider. - [Add and customize a Logo image in Email Campaigns](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-add-and-customize-a-logo-image-in-email-campaigns.md): Add and customize a logo in Email Campaigns for brand recognition. - [Add and customize a Text section in Email Campaigns](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-add-and-customize-a-text-section-in-email-campaigns.md): Add a Text section to communicate with contacts in emails. - [Add and customize Announcements in Email Campaigns](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-add-and-customize-announcements-in-email-campaigns.md): Display announcement banners in Email Campaigns to share important information. - [Add and customize Social Icons in Email Campaigns](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-add-and-customize-social-icons-in-email-campaigns.md): Display Social Icons in emails to boost traffic to social media pages. - [Add and customize a Button in Email Campaigns](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-add-and-customize-your-button-in-email-campaigns.md): Use a Call to Action (CTA) Button in emails to drive engagement. - [Add and customize an Image and Image section in Email Campaigns](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-add-and-customize-your-image-and-image-section-in-email-campaigns.md): Create a 2-column image layout in Email Campaigns. - [Add and customize an Image and Text section in Email Campaigns](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-add-and-customize-your-image-and-text-section-in-email-campaigns.md): Combine an Image and Text section to visually showcase content to your audience. - [Add and customize images in Email Campaigns](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-add-and-customize-your-image-in-email-campaigns.md): Set a tone for emails, show personality, and display what your business has to offer with images. - [Add and customize a text and text section in Email Campaigns](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-add-and-customize-your-text-and-text-section-in-email-campaigns.md): Customize the layout of text in emails using a 2-column style format for a comfortable reading experience. - [Add custom HTML to emails](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-add-custom-html-to-your-emails.md): Add custom HTML through the source code view in the Email Broadcast and Email Sequence editor toolbar. - [Add emojis to emails](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-add-emojis-to-emails.md): Customize Email Campaigns with emojis to add personality and visual appeal. - [Connect a custom email domain with Bluehost](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-connect-a-custom-email-domain-with-bluehost.md): Connect a custom email domain from Bluehost to a Kajabi account. - [Connect a custom email domain with Cloudflare](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-connect-a-custom-email-domain-with-cloudflare.md): Connect a custom email domain from Cloudflare to a Kajabi account. - [Connect a custom email domain with GoDaddy](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-connect-a-custom-email-domain-with-godaddy.md): Connect a custom email domain from GoDaddy to a Kajabi account. - [Connect a custom email domain with Namecheap](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-connect-a-custom-email-domain-with-namecheap.md): Connect a custom email domain from Namecheap to a Kajabi account. - [Connect a custom email domain with SiteGround](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-connect-a-custom-email-domain-with-siteground.md): Connect a custom email domain from SiteGround to a Kajabi account. - [Convert Email Sequence emails from Classic to Visual Editor](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-convert-email-sequence-emails-from-classic-to-the-new-visual-editor.md): Convert Email Sequence emails from the Classic Editor to the Visual Editor for richer design options. - [Create an unsubscribe from Email Sequence link](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-create-an-unsubscribe-from-email-sequence-link.md): Create an unsubscribe link in an Email Campaign to let recipients opt out of specific marketing email sequences. - [Create and use Liquid Objects in email marketing](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-create-and-use-liquid-objects-in-email-marketing.md): Personalize emails based on information collected in Form Fields using Liquid Objects. - [Create custom email templates](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-create-custom-email-templates.md): Save email designs as reusable templates to quickly create branded Email Campaigns. - [Customize typography in Email Campaigns](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-customize-the-typography-in-email-campaigns.md): Customize font style and font sizes for desktop and mobile devices to match your brand. - [Customize when Email Campaigns are sent](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-customize-when-email-campaigns-are-sent.md): Schedule when Email Broadcasts and Sequences are sent. - [Customize the color scheme in Email Campaigns](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-customize-your-color-scheme-in-email-campaigns.md): Change the default page background color, header text color, and body text color in the Color Scheme tab. - [Customize marketing settings](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-customize-your-marketing-settings.md): Brand email marketing settings by customizing the From Name, From Email, Reply-to address, company address, and logo. - [Customize the mobile and desktop layout in Email Campaigns](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-customize-your-mobile-and-desktop-layout-in-email-campaigns.md): Change the layout of an email based on the device contacts use to view it. - [Delete an email from an Email Sequence](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-delete-an-email-from-an-email-sequence.md): Remove an email from an Email Sequence. - [Delete bounced email addresses](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-delete-bounced-email-addresses.md): Remove contacts with bounced emails to maintain mailing list reputation and email deliverability. - [Disable an Email Sequence](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-disable-an-email-sequence.md): Prevent further emails from being sent by disabling an Email Sequence and removing subscription triggers. - [Edit the section background in Email Campaigns](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-edit-the-section-background-in-email-campaigns.md): Customize the background color of each section in your email using the Email Visual Editor. - [Edit Email Sequence settings](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-edit-your-email-sequence-settings.md): Access Email Sequence settings to configure the Internal Title, Unsubscribe Triggers, Sending Time, and Automations. - [Edit preview text](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-edit-your-preview-text.md): Create targeted messaging specific to the Preview Text to encourage email recipients to open your email. - [Hide the view in web browser link](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-hide-the-view-in-web-browser-link.md): Hide the View In Web Browser link that allows recipients to open your email in a separate browser window. - [Link an image to a page in an Email Sequence](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-link-your-image-to-a-page-in-an-email-sequence.md): Make an image in an Email Sequence clickable to link to a page. - [Manage and edit existing Email Campaigns](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-manage-and-edit-existing-email-campaigns.md): Manage, edit, and view reports of existing Email Campaigns. - [Optimize images in Email Campaigns](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-optimize-images-in-your-email-campaigns.md): Optimize images in an Email Campaign to enhance the recipient email experience across devices. - [Optimize font size in Email Campaigns](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-optimize-your-font-size-in-email-campaigns.md): Configure font sizes in an Email Campaign across desktop and mobile devices for the best reading experience. - [Optimize the Video section in Email Campaigns](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-optimize-your-video-section-in-email-campaigns.md): Use the Video Section to create an image that links to a video in an email. - [Organize content with folders](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-organize-your-content-with-folders.md): Organize Email Campaigns with Kajabi Folders to improve your systems and manage content efficiently. - [Personalize Email Campaigns](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-personalize-your-email-campaigns.md): Connect with email recipients by personalizing Email Campaigns with liquid objects. - [Rearrange a section in Email Campaigns](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-rearrange-a-section-in-email-campaigns.md): Rearrange and reorder sections in Email Campaigns with the Email Visual Editor. - [Remove a subscriber from an Email Sequence](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-remove-a-subscriber-from-an-email-sequence.md): Manually remove a subscriber from an Email Sequence to maintain a healthy mailing list. - [Remove text formatting with the Clear Formatting button](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-remove-text-formatting-with-the-clear-formatting-button.md): Remove unwanted text formatting with a single click using the Clear Formatting button. - [Remove a logo from Email Campaigns](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-remove-your-logo-from-your-email-campaigns.md): Remove the Company Logo from the top of Email Campaigns. - [Resend Email Broadcasts to unopened contacts](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-resend-email-broadcasts-to-unopened-contacts.md): Resend emails to contacts who have not opened an email broadcast to boost engagement. - [Send an email to a single contact](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-send-an-email-to-a-single-contact.md): Send an Email Broadcast to a single contact using a custom segment filter. - [Set up an automation using a link in an email](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-set-up-an-automation-using-a-link-in-an-email.md): Initiate an action after a link is clicked in an Email Campaign using Automations. - [Subscribe contacts to an Email Sequence after completing a sequence](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-subscribe-contacts-to-a-new-email-sequence-after-completing-a-sequence.md): Automatically subscribe contacts to another Email Sequence when they complete one. - [Subscribe contacts to an Email Sequence](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-subscribe-contacts-to-an-email-sequence.md): Subscribe contacts to Email Sequences manually or with the power of Automations. - [Test send emails](https://help.kajabi.com/articles/marketing/email-campaigns/how-to-test-send-your-emails.md): Send test emails to yourself to review and edit email campaigns before sending them to recipients. - [Understand Email Sequence change impacts](https://help.kajabi.com/articles/marketing/email-campaigns/how-will-changes-to-my-email-sequence-impact-my-subscribers.md): Learn how editing an active Email Sequence affects existing and future subscribers differently. - [Convert classic Email Broadcasts to the Visual Editor](https://help.kajabi.com/articles/marketing/email-campaigns/if-i-have-email-broadcasts-created-with-the-classic-email-editor-can-i-convert-them-to-the-new-visual-editor.md): Understand the limitations of converting Email Broadcasts between the classic and Visual editors. - [Missing editor section types or features](https://help.kajabi.com/articles/marketing/email-campaigns/im-not-seeing-some-of-the-new-editor-section-types-or-features-am-i-missing-something.md): Understand why some editor features may not appear when editing existing email campaigns. - [Template text that cannot be changed](https://help.kajabi.com/articles/marketing/email-campaigns/im-using-one-of-the-templates-but-i-cant-change-some-of-the-text-because-its-part-of-an-image-is-that-right.md): Understand why some template text appears as part of an image and how to work around it. - [Lightning Broadcast FAQs](https://help.kajabi.com/articles/marketing/email-campaigns/lightning-broadcast-faqs.md): Get answers to common questions about Lightning Broadcast and faster email delivery. - [Manage Email marketing categories](https://help.kajabi.com/articles/marketing/email-campaigns/manage-email-marketing-categories.md): Give contacts the choice to opt out of specific email types instead of unsubscribing from everything. - [Improve sender reputation](https://help.kajabi.com/articles/marketing/email-campaigns/sender-reputation-guide.md): Build and maintain a strong email sender reputation for better deliverability. - [Avoid spam traps](https://help.kajabi.com/articles/marketing/email-campaigns/spam-traps-what-are-they-and-how-to-avoid-them.md): Understand what spam traps are, the types that exist, and how to keep your email list clean to avoid them. - [Understand the Gmail Promotions tab](https://help.kajabi.com/articles/marketing/email-campaigns/understanding-the-gmail-promotions-tab.md): Learn how Gmail categorizes promotional emails and how this may affect the delivery of marketing messages. - [Marketing and transactional emails](https://help.kajabi.com/articles/marketing/email-campaigns/what-are-marketing-and-transactional-emails.md): Learn the difference between marketing and transactional emails to send compliant, appropriate emails to your recipients. - [Inactive and active status in an Email Sequence](https://help.kajabi.com/articles/marketing/email-campaigns/what-does-the-inactive-and-active-status-in-an-email-sequence-refer-to.md): Understand what active and inactive subscriber statuses mean in email sequences. - [Understand the email unsubscribe link](https://help.kajabi.com/articles/marketing/email-campaigns/what-does-the-unsubscribe-link-in-my-email-unsubscribe-my-recipients-from.md): Learn what happens when recipients click the unsubscribe button in email campaigns. - [What is CAN-SPAM?](https://help.kajabi.com/articles/marketing/email-campaigns/what-is-can-spam.md): Learn about the CAN-SPAM Act and how to ensure email campaigns comply with these regulations. - [macOS Monterey and iOS 15 email privacy update](https://help.kajabi.com/articles/marketing/email-campaigns/what-you-need-to-know-about-the-monterey-os-12-and-apple-ios-15-email-privacy-update.md): Understand how Apple Mail Privacy Protection affects email open tracking and adapt your strategy. - [Email Sequence email templates](https://help.kajabi.com/articles/marketing/email-campaigns/whats-new-with-email-sequences-email-templates.md): Explore the updates available for Email Sequences and automated email templates on Kajabi. - [Troubleshoot emails after connecting a custom domain](https://help.kajabi.com/articles/marketing/email-campaigns/why-are-my-emails-not-sending-or-receiving-after-i-connect-my-custom-domain.md): Resolve common email sending and receiving issues after connecting a custom domain to Kajabi. - [Resolve the "be careful with this message" warning](https://help.kajabi.com/articles/marketing/email-campaigns/why-do-my-emails-have-a-be-careful-with-this-message-warning.md): Understand why emails display a warning message and learn how to prevent it. - [Troubleshoot emails not reaching all contacts](https://help.kajabi.com/articles/marketing/email-campaigns/why-do-my-emails-send-to-some-contacts-and-not-all.md): Identify what may cause a discrepancy between a contact list and email recipients. - [Fix Email Broadcast display issues in Outlook](https://help.kajabi.com/articles/marketing/email-campaigns/why-does-my-email-broadcast-look-bad-in-outlook.md): Resolve common display issues when Email Broadcasts are viewed in Microsoft Outlook. - [Resolve Gmail email clipping](https://help.kajabi.com/articles/marketing/email-campaigns/why-is-gmail-clipping-my-email.md): Understand why Gmail clips email messages and learn techniques to keep emails within size limits. - [Fix broken View in Browser and unsubscribe links](https://help.kajabi.com/articles/marketing/email-campaigns/why-is-the-view-in-browser-and-unsubscribe-link-in-my-email-campaign-not-working.md): Understand why the View in Browser and unsubscribe links may not work when previewing an email. - [Events overview](https://help.kajabi.com/articles/marketing/events/event-overview.md): Engage members and build anticipation for launches, webinars, and in-person gatherings. - [Create an Event](https://help.kajabi.com/articles/marketing/events/how-to-create-an-event.md): Create email sequences built around an Event for registration, reminder, and follow-up emails. - [Create an Offer for an Event](https://help.kajabi.com/articles/marketing/events/how-to-create-an-offer-for-your-event.md): Create an Offer to sell seats to an Event, whether in-person or online. - [Create time slots for an Event](https://help.kajabi.com/articles/marketing/events/how-to-create-time-slots-for-an-event.md): Create time slots for events, webinars, and services using Kajabi Events, Forms, and Automations. - [Duplicate an Event](https://help.kajabi.com/articles/marketing/events/how-to-duplicate-an-event.md): Duplicate an Event to reuse settings and emails for future events. - [Register people to an Event](https://help.kajabi.com/articles/marketing/events/how-to-register-people-to-your-event.md): Set up an Event for visitors to self-register through your site with Forms and Automations. - [Sell access to a webinar](https://help.kajabi.com/articles/marketing/events/how-to-sell-access-to-a-webinar.md): Sell digital tickets to a webinar with Kajabi Events, Pages, and Offers. - [Customize double opt-in confirmation email and landing page](https://help.kajabi.com/articles/marketing/forms/can-i-customize-my-double-opt-in-confirmation-email-and-landing-page.md): Customize the confirmation email and confirmation page for a double opt-in Form. - [Create and build a Form](https://help.kajabi.com/articles/marketing/forms/create-and-build-your-form.md): Create a Form in Kajabi for subscribing contacts, granting Offers, and registering to Events. - [Embed a Kajabi Form on an external webpage](https://help.kajabi.com/articles/marketing/forms/embed-a-kajabi-form-on-an-external-webpage.md): Embed Kajabi Forms onto external webpages to build your list and gain subscribers. - [Change a Form title](https://help.kajabi.com/articles/marketing/forms/how-do-i-change-my-form-title-from-join-the-newsletter.md): Edit the title displayed on a Form from 'Join the Newsletter' to a custom title. - [Add and edit fields on a Form](https://help.kajabi.com/articles/marketing/forms/how-to-add-and-edit-fields-on-a-form.md): Customize Form fields to gather specific information about leads and customers. - [Autofill Forms by passing submission data to the thank you page](https://help.kajabi.com/articles/marketing/forms/how-to-autofill-forms-by-passing-submission-data-to-the-thank-you-page.md): Use the Pass submission data to the thank you page setting to autofill a second Form. - [Export information from a Form](https://help.kajabi.com/articles/marketing/forms/how-to-export-information-from-a-form.md): Export a CSV file of contacts who have opted in to a Form. - [Fix white or invisible text on a Form](https://help.kajabi.com/articles/marketing/forms/how-to-fix-white-or-invisible-text-on-your-form.md): Resolve white or invisible text on a Form by adjusting font color settings. - [Grant access to an Offer after a Form submission](https://help.kajabi.com/articles/marketing/forms/how-to-grant-access-to-an-offer-after-a-form-submission.md): Grant access to an Offer automatically after a user submits a Form. - [Redirect Form submitters to a custom thank you page](https://help.kajabi.com/articles/marketing/forms/how-to-redirect-your-form-submitters-to-a-custom-thank-you-page.md): Connect a Form to a custom thank you page to redirect subscribers after submission. - [Remove custom Form fields](https://help.kajabi.com/articles/marketing/forms/how-to-remove-custom-form-fields.md): Archive or permanently delete a custom Form field to manage the field limit. - [Send email sequences based on Form answers](https://help.kajabi.com/articles/marketing/forms/how-to-send-email-sequences-based-on-form-answers.md): Subscribe contacts to email sequences based on their responses submitted in a Form. - [Set up a Form with double opt-in](https://help.kajabi.com/articles/marketing/forms/how-to-set-up-a-form-with-double-opt-in.md): Enable or disable Double Opt-In on a Form to improve deliverability and lead quality. - [Trigger Automations based on Form responses](https://help.kajabi.com/articles/marketing/forms/how-to-trigger-automations-in-a-form-based-on-the-submitters-response.md): Set up Forms to trigger Automations based on the submitter's response with custom field types. - [Use an opt-in to allow access to a video](https://help.kajabi.com/articles/marketing/forms/how-to-use-an-opt-in-to-allow-access-to-a-video.md): Use an Opt-In form to gate free video content and grow your contacts list. - [Use Automations in Forms](https://help.kajabi.com/articles/marketing/forms/how-to-use-automations-in-forms.md): Set up Automations for Opt-In Forms to automate Offers, Email Sequences, Events, Tags, Emails, and Coupons. - [Use After Submission settings in Forms](https://help.kajabi.com/articles/marketing/forms/how-to-use-the-after-submission-settings-in-forms.md): Configure options that automatically occur after a Form is submitted. - [View Form submissions](https://help.kajabi.com/articles/marketing/forms/how-to-view-form-submissions.md): View all responses to a Form from both the Form editor and Contacts tab. - [What happens when a Form is deleted](https://help.kajabi.com/articles/marketing/forms/what-happens-when-a-form-is-deleted.md): Understand what happens to contacts and tags when a Form is permanently removed from your site. - [Maximum Form fields](https://help.kajabi.com/articles/marketing/forms/what-is-the-maximum-amount-of-fields-i-can-include-on-a-form.md): Add up to 50 total fields in a single Form and manage up to 50 custom Form fields per site. - [Duplicate a Funnel](https://help.kajabi.com/articles/marketing/funnels/duplicate-a-funnel.md): Create an additional version of a Funnel by recreating it with duplicate pages. - [Funnel templates](https://help.kajabi.com/articles/marketing/funnels/funnel-templates.md): Explore the Funnel templates available in Kajabi. - [Funnels overview](https://help.kajabi.com/articles/marketing/funnels/funnels-in-kajabi.md): Automate marketing and sales with Funnels in Kajabi. - [Add a chat box to a live webinar Funnel](https://help.kajabi.com/articles/marketing/funnels/how-to-add-a-chat-box-to-a-live-webinar-funnel.md): Include a Chatbox with a Live Webinar Funnel using YouTube Live to interact with viewers in real-time. - [Add a page to a Funnel](https://help.kajabi.com/articles/marketing/funnels/how-to-add-a-page-to-your-funnel.md): Add pages to a Funnel template for additional customization. - [Add emails to a Funnel](https://help.kajabi.com/articles/marketing/funnels/how-to-add-emails-to-a-funnel.md): Add an Email Sequence or Event with emails to a Funnel flow and customize them directly in the Funnel. - [Attach multiple Offers to a Funnel](https://help.kajabi.com/articles/marketing/funnels/how-to-attach-multiple-offers-to-a-funnel.md): Add Pricing Card Blocks to Funnel Landing Pages to attach multiple Offers and convert leads into paying customers. - [Customize a Funnel page](https://help.kajabi.com/articles/marketing/funnels/how-to-customize-a-funnel-page.md): Access the Funnel Page Builder to customize Funnel pages. - [Delete a Funnel](https://help.kajabi.com/articles/marketing/funnels/how-to-delete-a-funnel.md): Remove a Funnel from the Marketing Funnel tab. - [Generate a Funnel](https://help.kajabi.com/articles/marketing/funnels/how-to-generate-a-funnel.md): Generate a Funnel template to start building marketing automation. - [Reorder pages in a Funnel](https://help.kajabi.com/articles/marketing/funnels/how-to-reorder-pages-in-a-funnel.md): Rearrange existing pages in a Funnel to fit the style and flow of a marketing Funnel. - [Replace an Event in an existing Funnel](https://help.kajabi.com/articles/marketing/funnels/how-to-replace-an-event-in-an-existing-funnel.md): Replace an Event in an existing Funnel without rebuilding it from scratch. - [Replace the PDF file in a Freebie Funnel](https://help.kajabi.com/articles/marketing/funnels/how-to-replace-the-pdf-file-in-a-freebie-funnel.md): Change the downloadable file in a Freebie Funnel. - [Set up a live evergreen webinar](https://help.kajabi.com/articles/marketing/funnels/how-to-set-up-a-live-evergreen-webinar.md): Set up a live evergreen webinar using the Zoom Webinar Funnel in Kajabi. - [Set up a pre-recorded evergreen webinar with the Webinar Legacy Funnel](https://help.kajabi.com/articles/marketing/funnels/how-to-set-up-a-pre-recorded-evergreen-webinar-with-the-webinar-legacy-funnel.md): Set up a pre-recorded evergreen webinar using the Legacy Funnel in Kajabi. - [Set up a Zoom Webinar Funnel](https://help.kajabi.com/articles/marketing/funnels/how-to-set-up-a-zoom-webinar-funnel.md): Set up a Webinar Funnel using the Zoom Webinar Funnel template in Kajabi. - [Test a Funnel](https://help.kajabi.com/articles/marketing/funnels/how-to-test-your-funnel.md): Preview and test Funnels to ensure they are designed and functioning as intended. - [Use the Funnel Checklist](https://help.kajabi.com/articles/marketing/funnels/how-to-use-the-funnel-checklist.md): Use the Funnel Checklist to track customization progress while building a Funnel. - [Use YouTube Live in a webinar Funnel](https://help.kajabi.com/articles/marketing/funnels/how-to-use-youtube-live-in-a-webinar-funnel.md): Use YouTube Live with a Webinar Funnel on Kajabi to reach customers in real time. - [View Forms submitted in a Funnel](https://help.kajabi.com/articles/marketing/funnels/how-to-view-forms-submitted-in-a-funnel.md): Access and view Form submissions in a Funnel. - [View page and email stats in Funnels](https://help.kajabi.com/articles/marketing/funnels/how-to-view-page-and-email-stats-in-funnels.md): Track statistics throughout sales and marketing Funnels to understand conversion rates. - [View video stats in a Funnel](https://help.kajabi.com/articles/marketing/funnels/how-to-view-video-stats-in-a-funnel.md): Access video statistics for content uploaded to a Funnel. - [Share a Funnel](https://help.kajabi.com/articles/marketing/funnels/share-your-funnel.md): Share a Funnel to encourage visitors to opt in to sales and marketing Funnels. - [Funnel updates](https://help.kajabi.com/articles/marketing/funnels/whats-new-with-funnels.md): Explore the updates to Funnels on Kajabi. - [Use Universal Inbox and Comment-to-DM](https://help.kajabi.com/articles/marketing/universal-inbox-comment-to-dm/universal-inbox-comment-to-dm.md): Manage social media messages and automate DMs when customers comment on your Instagram or Facebook posts. - [Media Library overview](https://help.kajabi.com/articles/media-library/media-library-overview.md): Manage all your video, audio, image, and document files from a single hub — upload once and use across your entire Kajabi site. - [Access Community from a Branded App](https://help.kajabi.com/articles/mobile-apps/branded-app/accessing-your-community-from-your-branded-app.md): Open Community directly from a Branded App for seamless navigation. - [Additional steps to change Google Cloud IAP Policy](https://help.kajabi.com/articles/mobile-apps/branded-app/additional-steps-to-change-google-cloud-iap-policy.md): Complete these steps if you receive the IAM policy update failed error code. - [Additional verification for the Google Play Console](https://help.kajabi.com/articles/mobile-apps/branded-app/additional-verification-for-your-google-play-console.md): Verify access to an Android device so you can publish apps on Google Play. - [Android app transfer process](https://help.kajabi.com/articles/mobile-apps/branded-app/android-app-transfer-process.md): Set up and gather the information necessary for an Android App transfer. - [Answer Google's closed beta questionnaire](https://help.kajabi.com/articles/mobile-apps/branded-app/answer-googles-closed-beta-questionnaire.md): Provide proper answers to Google's closed beta questionnaire for a Branded App. - [Apply for Apple and Google's 15% commission programs](https://help.kajabi.com/articles/mobile-apps/branded-app/apply-for-apple-and-googles-15-commission-programs-for-your-branded-mobile-app.md): Reduce in-app purchase commissions by applying for Apple's and Google's 15% programs. - [Best practices for launching a Branded App](https://help.kajabi.com/articles/mobile-apps/branded-app/best-practices-for-launching-your-branded-app.md): Grow engagement and create a seamless experience across all channels when launching a Branded App. - [Branded Mobile App naming guidelines](https://help.kajabi.com/articles/mobile-apps/branded-app/branded-mobile-app-naming-guidelines.md): Name a Branded Mobile App according to Apple and Google naming guidelines. - [Branded Mobile App release notes](https://help.kajabi.com/articles/mobile-apps/branded-app/branded-mobile-app-release-notes.md): Stay up to date with the latest features, improvements, and bug fixes for the Branded Mobile App. - [Branded Mobile App resources](https://help.kajabi.com/articles/mobile-apps/branded-app/branded-mobile-app-resources.md): Find all the resources you need to build, customize, and manage a Branded Mobile App. - [Enter trader status and contact info in App Store Connect](https://help.kajabi.com/articles/mobile-apps/branded-app/entering-your-trader-status-and-contact-info-in-app-store-connect.md): Add trader status and contact information in App Store Connect to comply with the EU Digital Services Act. - [Examples of good and bad Branded Mobile App logos](https://help.kajabi.com/articles/mobile-apps/branded-app/examples-of-good-and-bad-branded-mobile-app-logos.md): Design choices that make a Branded Mobile App logo effective or ineffective. - [Google photo and video permissions declaration instructions](https://help.kajabi.com/articles/mobile-apps/branded-app/google-photo-and-video-permissions-declaration-instructions.md): Complete the Google photo and video permissions declaration in the Play Console. - [Get started creating a Branded App](https://help.kajabi.com/articles/mobile-apps/branded-app/how-do-i-get-started-creating-my-own-branded-app.md): Set up a Branded App subscription and begin the onboarding process with Kajabi. - [Accept the closed testing invite and install the app](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-accept-the-closed-testing-invite-to-download-and-install-the-app.md): Accept a closed testing invite, then download and install a Branded App for testing. - [Add an onboarding carousel to a Branded App](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-add-an-onboarding-carousel-to-your-branded-app.md): Provide a premium welcome experience with a carousel of images the first time users log in. - [Add app reviewer notes for Apple](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-add-app-reviewer-notes-for-apple.md): Provide clear notes for Apple's app reviewers to help a Branded App pass the review process. - [Add custom links to a Branded App](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-add-custom-links-to-your-branded-app.md): Include a floating action button with a menu of custom page links in a Branded App. - [Add external purchase links to a Branded App](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-add-external-purchase-links-to-your-branded-app.md): Place web-based offer links in buttons, images, galleries, custom links, and push notifications. - [Add Kajabi as an admin to Google Play Console and Google Cloud Console](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-add-kajabi-as-an-admin-to-your-google-play-console-and-project-owner-on-google-cloud-console.md): Grant Kajabi admin access to Google Play Console and project owner access on Google Cloud Console for a Branded Mobile App build. - [Complete the iOS app transfer process](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-complete-the-ios-app-transfer-process.md): Transfer an iOS app into an Apple Developer account and update Kajabi settings. - [Create a Branded Mobile App icon](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-create-a-branded-mobile-app-icon.md): Design an effective app icon that meets Apple App Store and Google Play Store requirements. - [Create a Google API key for a Branded Mobile App](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-create-a-google-api-key-for-the-branded-mobile-app-intake-process.md): Generate an API key to connect a Branded App to Google Play Console. - [Create a Google Developer account](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-create-a-google-developer-account.md): Set up a Google Developer account in Google Play Console to publish a Branded App on Android. - [Create an Apple Developer account and join the Apple Developer Program](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-create-an-apple-developer-account-and-join-the-apple-developer-program.md): Set up an Apple Developer account, enroll in the Apple Developer Program, and add Kajabi as an admin to publish a Branded App on iOS. - [Create App Offers for a Branded App](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-create-app-offers-for-your-branded-app.md): Enable Branded App members to purchase courses through in-app purchases. - [Create Branded App push notifications](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-create-branded-app-push-notifications.md): Send targeted push notifications to Branded App members to drive engagement. - [Create custom screens for a Branded Mobile App](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-create-custom-screens-for-your-branded-mobile-app.md): Customize app screens with widgets to enhance navigation, showcase products, and engage members. - [Create a first paid Apple App Offer for approval](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-create-your-first-paid-apple-app-offer-for-approval.md): Submit a first paid Apple App Offer from a Branded Mobile App for Apple's review. - [Customize widgets on Branded App screens](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-customize-widgets-on-your-branded-app-screens.md): Add and configure widgets including products, buttons, images, galleries, text, videos, and embed codes on Branded App screens. - [Customize a Branded App](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-customize-your-branded-app.md): Design a Branded App with customizable onboarding, welcome screens, widgets, and more. - [Edit app store listings](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-edit-your-app-store-listings.md): Update app name, description, icon, screenshots, keywords, and more on the Apple App Store and Google Play Store. - [Publish a Branded App to the Apple App Store](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-publish-your-branded-app-to-the-apple-app-store.md): Submit the iOS version of a Kajabi Branded App to the Apple App Store for review and publication. - [Publish a Branded App to the closed testing track in Google Play Store](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-publish-your-branded-app-to-the-closed-testing-track-in-the-google-play-store.md): Test the Android version of a Branded App by publishing it to the closed testing track. - [Publish a Branded App to the Google Play Store](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-publish-your-branded-app-to-the-google-play-store.md): Download the AAB file, upload it to Google Play Console, and submit a Branded App for review. - [Redirect users to download an app from the app store](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-redirect-users-to-download-your-app-from-the-app-store.md): Add device-based app store redirection to a Kajabi Landing Page. - [Set up a Branded App welcome screen](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-set-up-a-branded-app-welcome-screen-where-new-users-can-create-an-account.md): Customize a welcome screen where app users can create a member account or log in. - [Set up a merchant account for Google in-app purchases](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-set-up-a-merchant-account-for-google-in-app-purchases.md): Create a payments profile in Google Play Console to enable in-app purchases for the Android Branded App. - [Set up banking and tax info with Apple](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-set-up-your-banking-and-tax-info-with-apple.md): Configure banking and tax information in App Store Connect to sell in-app purchases through a Branded App on iOS. - [Set up a D-U-N-S number for a Branded App](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-set-up-your-d-u-n-s-number-for-your-branded-app.md): Apply for a D-U-N-S Number required to create an Apple Developer account for organizations. - [Update Branded App brand assets or terms and privacy links](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-update-your-branded-app-brand-assets-or-terms-privacy-links.md): Update app name, logo, accent color, icon, terms of service URL, and privacy policy URL from Kajabi settings. - [Update a Branded App in the Apple App Store and Google Play Store](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-update-your-branded-app-in-the-apple-app-store-and-google-play-store.md): Trigger a build in Kajabi and submit updates to the Apple App Store and Google Play Store. - [Update Branded App screenshots](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-update-your-branded-app-screenshots.md): Enhance Branded App screenshot designs and update them for the Apple App Store and Google Play Store. - [Use the paywall feature in a Branded App](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-use-the-paywall-feature-in-your-branded-appmember-app.md): Require users to purchase access before viewing restricted courses and posts in a mobile app. - [Use Variants to personalize pages in a Branded App](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-use-variants-to-personalize-pages-in-your-branded-app.md): Create different versions of custom pages in your Branded App and display them to specific member segments. - [Verify a Google Developer account](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-verify-your-google-developer-account.md): Complete the Google Developer account verification process for a Branded Mobile App. - [Verify a website for Google Play Console](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-verify-your-website-for-your-google-play-console.md): Add a TXT record to DNS settings to verify domain ownership for a Google Developer account. - [Write and update an App Store description for a Branded Mobile App](https://help.kajabi.com/articles/mobile-apps/branded-app/how-to-write-and-update-your-app-store-description-for-your-branded-mobile-app.md): Craft a compelling App Store description that markets a Branded Mobile App and meets Apple's requirements. - [Kajabi Branded App FAQs](https://help.kajabi.com/articles/mobile-apps/branded-app/kajabi-branded-app-faqs.md): Find answers to frequently asked questions about Kajabi Branded Apps. - [Kajabi Branded App overview](https://help.kajabi.com/articles/mobile-apps/branded-app/kajabi-branded-app-overview.md): Build a branded mobile app with Kajabi to increase brand authority and customer engagement. - [Kajabi Mobile App vs. Branded Mobile App](https://help.kajabi.com/articles/mobile-apps/branded-app/kajabi-mobile-app-vs-branded-mobile-app.md): Compare the Kajabi Mobile App and Branded Mobile App to choose the right mobile experience. - [Manage refunds for in-app purchases](https://help.kajabi.com/articles/mobile-apps/branded-app/managing-refunds-for-in-app-purchases.md): Handle refunds for purchases made through Apple and Google in a Branded Mobile App. - [Manual vs. automatic updates in the Branded App](https://help.kajabi.com/articles/mobile-apps/branded-app/manual-vs-automatic-updates-in-the-branded-app.md): Identify which Branded Mobile App features update automatically and which require manual updates. - [Update the target API level for a Branded App](https://help.kajabi.com/articles/mobile-apps/branded-app/update-your-target-api-level-for-your-branded-app.md): Meet Google's target API level requirements for an Android Branded App. - [Use universal links (deep links) in a Branded App](https://help.kajabi.com/articles/mobile-apps/branded-app/using-universal-links-deep-links-in-your-branded-app.md): Configure deep links so a Branded App opens directly to the correct screen from emails, texts, and other apps. - [Prevent or resolve a Branded App rejection from the App Store or Google Play](https://help.kajabi.com/articles/mobile-apps/branded-app/what-should-i-do-if-my-branded-app-is-rejected-by-the-app-store-or-google-play.md): Best practices to improve the app submission and approval process. - [Address a Google Play Console termination warning](https://help.kajabi.com/articles/mobile-apps/branded-app/what-to-do-if-your-google-play-console-warns-that-your-app-is-at-risk-of-being-terminated.md): Complete the required action items to prevent a Google developer account from being closed. - [Select Branded App data privacy options for Apple App Store](https://help.kajabi.com/articles/mobile-apps/branded-app/what-to-select-for-branded-app-data-privacy-for-apple-app-store.md): Submit data collection and privacy information for an iOS Branded App in App Store Connect. - [Select Branded App data types and data safety for Google Play Store](https://help.kajabi.com/articles/mobile-apps/branded-app/what-to-select-for-branded-app-data-types-and-data-safety-for-google-play-store.md): Upload a CSV file to Google Play Console to submit Android data safety information for a Branded App. - [Update Kajabi settings for an iOS app transfer](https://help.kajabi.com/articles/mobile-apps/branded-app/what-to-update-in-kajabi-for-your-ios-app.md): Update Team ID, App ID, Push Notification Key, and API Key in Kajabi after transferring an iOS app. - [Branded Mobile App community updates](https://help.kajabi.com/articles/mobile-apps/branded-app/whats-new-with-the-branded-mobile-app.md): Explore the latest updates to the Branded Mobile App community experience. - [Manage push notifications in the Kajabi Mobile App](https://help.kajabi.com/articles/mobile-apps/kajabi-app/can-users-enable-and-disable-push-notifications-from-the-kajabi-mobile-app.md): Enable and disable push notifications from the Kajabi Mobile App through phone settings. - [Customize the Kajabi Mobile App](https://help.kajabi.com/articles/mobile-apps/kajabi-app/customizing-the-kajabi-mobile-app.md): Add a custom icon and color scheme to reflect your personal branding in the Kajabi Mobile App. - [Download and log in to the Kajabi Mobile App](https://help.kajabi.com/articles/mobile-apps/kajabi-app/downloading-logging-in-to-the-kajabi-mobile-app.md): Access all of your Kajabi Courses in one convenient place. - [Get started with the Kajabi Mobile App](https://help.kajabi.com/articles/mobile-apps/kajabi-app/getting-started-with-kajabi-mobile-app.md): Understand the benefits of the Kajabi Mobile App compared to mobile browser access. - [Download files on Kajabi Mobile App (iOS)](https://help.kajabi.com/articles/mobile-apps/kajabi-app/how-to-download-files-on-kajabi-mobile-app-ios.md): Save files from the Kajabi App to an iOS device. - [Preview the Kajabi Mobile App](https://help.kajabi.com/articles/mobile-apps/kajabi-app/how-to-preview-the-kajabi-mobile-app.md): View Products from the perspective of customers in the mobile app. - [Resolve access issues with the Kajabi Mobile App](https://help.kajabi.com/articles/mobile-apps/kajabi-app/how-to-resolve-access-issues-with-the-kajabi-mobile-app.md): Troubleshoot and resolve common access issues with the Kajabi Mobile App. - [Update the Kajabi Mobile App](https://help.kajabi.com/articles/mobile-apps/kajabi-app/how-to-update-the-kajabi-mobile-app.md): Keep the Kajabi Mobile App current with the latest version on iOS and Android. - [Troubleshoot Kajabi Mobile App issues](https://help.kajabi.com/articles/mobile-apps/kajabi-app/troubleshooting-kajabi-mobile-app-issues.md): Find solutions for common Kajabi Mobile App problems and errors. - [Email address limits in the Kajabi Mobile App](https://help.kajabi.com/articles/mobile-apps/kajabi-app/what-is-the-limit-to-the-number-of-emails-a-user-can-add-to-the-kajabi-mobile-app.md): Understand the number of email addresses customers can add to the Kajabi Mobile App. - [Explore Kajabi Mobile App features](https://help.kajabi.com/articles/mobile-apps/kajabi-app/whats-new-with-the-kajabi-mobile-app.md): Discover the features available in the Kajabi Mobile App for your members. - [Add a video to a lesson with the Creator app](https://help.kajabi.com/articles/mobile-apps/kajabi-creator-app/how-to-add-a-video-to-a-lesson-with-the-kajabi-creator-app.md): Record or upload a video using the Kajabi Creator mobile app and add it to a lesson. - [Explore the Kajabi Creator mobile app](https://help.kajabi.com/articles/mobile-apps/kajabi-creator-app/kajabi-creator-mobile-app.md): Manage your Kajabi site from anywhere — track performance, review transactions, manage contacts, and create content on the go. - [AI Credits](https://help.kajabi.com/articles/products/ai-credits.md): Understand how AI Credits work on Kajabi and what your plan includes for transcription, translation, and dubbing. - [Add Coaching resources](https://help.kajabi.com/articles/products/coaching/add-coaching-resources.md): Share videos, files, links, and worksheets to enhance your customer's Coaching experience. - [Offer additional Coaching session purchases](https://help.kajabi.com/articles/products/coaching/coaching-member-additional-session-purchase.md): Offer extra 1:1 Coaching sessions that members can buy anytime, without needing to repurchase the whole program. - [Coaching Product overview](https://help.kajabi.com/articles/products/coaching/coaching-product-overview.md): Build personalized Coaching programs with scheduling, live video, and session management tools. - [Connect Calendly to a Coaching Product](https://help.kajabi.com/articles/products/coaching/connect-calendly-to-your-coaching-product.md): Integrate Calendly with a Coaching Product on Kajabi for a seamless scheduling experience. - [Connect the Kajabi Scheduler to a Coaching Product](https://help.kajabi.com/articles/products/coaching/connect-the-kajabi-scheduler-to-your-coaching-product.md): Set your availability and book sessions with the Kajabi Scheduler. - [Compare 1:1 Coaching and Group Coaching](https://help.kajabi.com/articles/products/coaching/differences-between-a-11-coaching-program-and-group-coaching.md): Understand the difference between a 1:1 Coaching Program and Group Coaching to choose the best fit for your business. - [Group Coaching](https://help.kajabi.com/articles/products/coaching/group-coaching.md): Create guided Coaching experiences for multiple participants to expand your product offerings. - [Add client notes (customer view)](https://help.kajabi.com/articles/products/coaching/how-clients-can-add-notes.md): Coaching clients can add shared and private notes to track progress and key takeaways. - [Add a Coaching Product upsell](https://help.kajabi.com/articles/products/coaching/how-to-add-a-coaching-product-upsell.md): Drive sales by adding an upsell to a Coaching Product that appears after a client completes a session. - [Add Coaching client notes](https://help.kajabi.com/articles/products/coaching/how-to-add-notes-for-clients.md): Add shared notes your client can see, and private notes they cannot. - [Connect Acuity to a Coaching Product](https://help.kajabi.com/articles/products/coaching/how-to-connect-acuity-to-your-coaching-product.md): Use Acuity to schedule Coaching sessions for a Coaching Product. - [Create a Coaching Product](https://help.kajabi.com/articles/products/coaching/how-to-create-a-coaching-product.md): Build, manage, and schedule Coaching sessions with customers on Kajabi. - [Create a live video session](https://help.kajabi.com/articles/products/coaching/how-to-create-a-live-video-session.md): Meet with Coaching clients face-to-face using Kajabi's built-in live video, Kajabi Live. - [Create breakout sessions with Kajabi Live](https://help.kajabi.com/articles/products/coaching/how-to-create-breakout-sessions-with-kajabi-live.md): Encourage active learning and individual engagement with Breakout Rooms. - [Create breakout sessions with Kajabi Live](https://help.kajabi.com/articles/products/coaching/how-to-create-breakout-sessions-with-kajabi-live-12695237.md): Encourage active learning and individual engagement with Breakout Rooms. - [Customize a Coaching Product](https://help.kajabi.com/articles/products/coaching/how-to-customize-your-coaching-product.md): Apply brand colors and design elements to create a cohesive Coaching Product page. - [Integrate multiple 3rd party calendars with the Kajabi Scheduler](https://help.kajabi.com/articles/products/coaching/how-to-integrate-multiple-3rd-party-calendars-with-the-kajabi-scheduler.md): Merge multiple calendars from Google, Outlook, or Office 365 with Coaching availability to eliminate scheduling conflicts. - [Offer a single Coaching session](https://help.kajabi.com/articles/products/coaching/how-to-offer-a-single-coaching-session.md): Provide additional individual sessions for an existing Coaching package. - [Upload recorded Coaching sessions](https://help.kajabi.com/articles/products/coaching/how-to-upload-recorded-coaching-sessions.md): Upload recorded Coaching sessions for clients to access and reference later. - [Identify inactive Coaching sessions](https://help.kajabi.com/articles/products/coaching/identify-inactive-sessions-in-your-coaching-product.md): Filter and locate inactive sessions in a Coaching Product. - [Kajabi Scheduler overview](https://help.kajabi.com/articles/products/coaching/kajabi-scheduler-overview.md): Set reminders, manage availability, and add the Kajabi Scheduler Widget to connect with Coaching clients. - [Kajabi built-in live video FAQs](https://help.kajabi.com/articles/products/coaching/kajabis-built-in-live-video-faqs.md): Find answers to frequently asked questions about going live in Coaching Sessions. - [Manage Coaching session recordings](https://help.kajabi.com/articles/products/coaching/manage-your-coaching-session-recordings.md): Upload Kajabi Live recordings to Coaching sessions automatically. - [Schedule Group Coaching sessions](https://help.kajabi.com/articles/products/coaching/schedule-group-coaching-sessions.md): Set dates and times for Group Coaching sessions using your integrated calendar. - [Use the Coaching client admin dashboard](https://help.kajabi.com/articles/products/coaching/the-coaching-client-admin-dashboard.md): View client status, schedule sessions, and manage your Coaching program from the Client Admin Dashboard. - [Customize Coaching themes and builders](https://help.kajabi.com/articles/products/coaching/whats-new-with-coaching.md): Tailor the look, feel, and functionality of a Coaching Product with theme and builder settings. - [Manage Community Posts, Messages & Comments](https://help.kajabi.com/articles/products/community/add-and-manage-community-posts.md): Create, sort, pin, save, and schedule Posts in Communities. - [Meetup timezone display](https://help.kajabi.com/articles/products/community/are-meetups-shown-in-my-timezone.md): Meetup times in your Kajabi Community automatically convert to your local timezone. - [Build Kajabi Communities](https://help.kajabi.com/articles/products/community/build-kajabi-communities.md): Set up your Kajabi Community with Access Groups, Offers, and engagement features. - [Create a Community in another language](https://help.kajabi.com/articles/products/community/can-i-create-my-community-in-another-language.md): Kajabi Communities support multiple languages for you and your members. - [Contact an expert or teacher](https://help.kajabi.com/articles/products/community/can-the-user-ask-questions-to-the-expertteacher-mailing-system.md): Your customers can communicate with you through email, lesson comments, or a Community. - [Communities Showcase](https://help.kajabi.com/articles/products/community/communities-showcase.md): Explore successful Kajabi Communities for inspiration on structuring and growing your own. - [Communities Weekly Digest](https://help.kajabi.com/articles/products/community/communities-weekly-digest.md): Keep your Community members engaged and informed with an automated weekly summary of activity. - [Community Access Groups](https://help.kajabi.com/articles/products/community/community-access-groups.md): Use Access Groups to create a robust, engaging Community. - [Community best practices](https://help.kajabi.com/articles/products/community/community-best-practices-for-heroes.md): Strategies and tips for building and maintaining an engaged Kajabi Community. - [Community global feed and sidebar](https://help.kajabi.com/articles/products/community/community-global-feed-and-sidebar.md): Navigate your Community Feed page, customize Feed settings, and use the right sidebar to stay updated. - [Community moderation tools](https://help.kajabi.com/articles/products/community/community-moderation-tools.md): Review, approve, hide, and lock posts to keep your Community safe and organized. - [Community Settings - Customization](https://help.kajabi.com/articles/products/community/community-settings-customization.md): Configure the global Feed, rename features, adjust branding, customize reactions, and change other settings. - [Community Settings - Details](https://help.kajabi.com/articles/products/community/community-settings-details.md): Manage core settings including - [Community Settings - Gamification](https://help.kajabi.com/articles/products/community/community-settings-gamification.md): Configure rewards, titles, badges, points, and a Leaderboard to boost member engagement in your Community. - [Community Settings - Notifications](https://help.kajabi.com/articles/products/community/community-settings-notifications.md): Configure push, in-app, and email notifications for Community features. - [Create a Community Announcement](https://help.kajabi.com/articles/products/community/create-a-community-announcement.md): Share important news, updates, and resources with your Community members through Announcements. - [Create a Community Challenge](https://help.kajabi.com/articles/products/community/create-a-community-challenge.md): Inspire your members to take action together with Challenges in your Community. - [Create a Community Meetup](https://help.kajabi.com/articles/products/community/create-a-community-meetup.md): Schedule and manage virtual Meetups to build trust and connection with your Community members. - [Create a Community Channel](https://help.kajabi.com/articles/products/community/creating-a-community-channel.md): Segment your customers into refined groups with feed or chat Channels. - [Customize Community settings](https://help.kajabi.com/articles/products/community/customize-your-community-settings.md): Update your profile, adjust notifications, add social links, create Community Guidelines, and configure feature settings. - [Generate excitement and grow a Community](https://help.kajabi.com/articles/products/community/generate-excitement-and-grow-your-community.md): Use proven strategies to grow a membership and keep an audience engaged. - [Get insights about a Community](https://help.kajabi.com/articles/products/community/get-insights-about-your-community.md): View automatically generated statistics to analyze the progress and engagement of your Community. - [Host Live Rooms and events in a Community](https://help.kajabi.com/articles/products/community/host-live-rooms-and-events-in-your-community.md): Create genuine connections with your members using Live Rooms and events in your Community. - [Share access to a Community](https://help.kajabi.com/articles/products/community/how-can-i-share-access-to-my-community.md): Grant access to your Kajabi Community using Offers and Access Groups. - [Track member growth in a Community](https://help.kajabi.com/articles/products/community/how-can-my-community-members-track-their-growth.md): View points, badges, and Challenge progress on a member's profile page. - [Block or report a Community member](https://help.kajabi.com/articles/products/community/how-do-i-block-or-report-a-community-member.md): Block or report someone who violates the Kajabi Vibe Check policy for acceptable conduct. - [Understand the member Community experience](https://help.kajabi.com/articles/products/community/how-do-my-members-experience-the-community.md): Discover how your members access, navigate, and interact with your Kajabi Community. - [Kajabi Vibe Check policy](https://help.kajabi.com/articles/products/community/how-does-the-kajabi-vibe-check-work.md): Understand the Kajabi Vibe Check standards that keep your Community safe, respectful, and welcoming. - [Add a custom page to a Community](https://help.kajabi.com/articles/products/community/how-to-add-a-custom-page-to-your-community.md): Compile notes, resources, PDFs, videos, worksheets, and more in a custom page for your Community members to easily access. - [Add Offers in Kajabi Communities](https://help.kajabi.com/articles/products/community/how-to-add-offers-in-kajabi-communities.md): Connect offers directly within your Community to encourage members to purchase additional products or services. - [Apply text formatting to Community posts and comments](https://help.kajabi.com/articles/products/community/how-to-apply-text-formatting-to-your-kajabi-community-posts-and-comments.md): Customize your feed posts and comments with bold text, italics, ordered lists, and more. - [Create a poll in a Kajabi Community](https://help.kajabi.com/articles/products/community/how-to-create-a-poll-in-your-kajabi-community.md): Survey your Community members with polls in your Community Channels to gather feedback and drive engagement. - [Create custom reactions for a Community](https://help.kajabi.com/articles/products/community/how-to-create-custom-reactions-for-your-community.md): Customize the emoji terminology your Community members can use to react to feed-style Channel posts, Channel post comments, and Challenge entries. - [Create guidelines for Community members](https://help.kajabi.com/articles/products/community/how-to-create-guidelines-for-new-community-members.md): Set up guidelines that members must accept before joining your Community. - [Create polls in Community Channels](https://help.kajabi.com/articles/products/community/how-to-create-polls-in-a-community-channels.md): Engage your Community members with interactive polls to gather feedback, make decisions, and encourage participation. - [Direct message Community members](https://help.kajabi.com/articles/products/community/how-to-direct-message-community-members.md): Send a direct message (DM) to a member of your Community for private one-on-one conversations. - [Edit a Community profile](https://help.kajabi.com/articles/products/community/how-to-edit-your-community-profile.md): Customize your Community profile to highlight your interests, social links, and personal information. - [Enable Google Sign-In for members](https://help.kajabi.com/articles/products/community/how-to-enable-google-sign-in-for-members.md): Allow members to sign in using Google for an easier login experience while keeping everything secure. - [Pin posts in Community Channels](https://help.kajabi.com/articles/products/community/how-to-pin-posts-in-your-community-channels.md): Highlight important posts by pinning them to the top of a Channel or main Feed. - [Rearrange Channels in a Kajabi Community](https://help.kajabi.com/articles/products/community/how-to-rearrange-your-channels-in-your-kajabi-community.md): Organize your Kajabi Community by reordering Channels to control how they display for members. - [Update a Kajabi Community URL](https://help.kajabi.com/articles/products/community/how-to-update-your-kajabi-community-url.md): Customize the URL slug of your Kajabi Community to match your brand and build recognition among members. - [Upload files to a Community Challenge](https://help.kajabi.com/articles/products/community/how-to-upload-a-pdf-audio-image-or-video-file-to-a-community-challenge.md): Attach PDFs, audio files, images, and videos to Challenge entries and comments. - [Upload files to a Community Channel](https://help.kajabi.com/articles/products/community/how-to-upload-a-pdf-audio-image-or-video-file-to-a-community-channel.md): Attach PDFs, audio files, images, and videos to Channel posts, comments, and chat messages. - [Migrate from the Legacy Community to Kajabi Communities](https://help.kajabi.com/articles/products/community/migrate-from-the-legacy-community-to-kajabi-communities.md): Migrate from the Legacy Community to access enhanced features in Kajabi Communities. - [Kajabi Communities redesign](https://help.kajabi.com/articles/products/community/redesigning-kajabi-communities.md): Explore the Kajabi Communities redesign, including performance improvements, streamlined navigation, and customization options. - [Rename Community features](https://help.kajabi.com/articles/products/community/rename-your-community-features.md): Customize your Community branding by changing the name of major Community features including Channels, Challenges, and Meetups. - [Schedule Community posts](https://help.kajabi.com/articles/products/community/schedule-community-posts.md): Plan and schedule posts to your Community Feed Channels ahead of time. - [Troubleshoot a Live Room](https://help.kajabi.com/articles/products/community/troubleshooting-your-live-room.md): Resolve camera, microphone, and screen sharing issues during a Live Room session. - [Back up site content](https://help.kajabi.com/articles/products/courses/back-up-your-site-content.md): Best practices for backing up content to protect, store, and organize work. - [Can customers be anonymous in a Community?](https://help.kajabi.com/articles/products/courses/can-customers-be-anonymous-in-my-community-product.md): Anonymity options for customers in Communities. - [Can customers export a Course they have completed?](https://help.kajabi.com/articles/products/courses/can-customers-export-a-course-they-have-completed.md): Course export options for customers. - [Can customers upload files in a Course?](https://help.kajabi.com/articles/products/courses/can-customers-upload-files-in-a-course.md): File upload options for customers in Courses and Communities. - [Can I add a digital Course to an individual customer's Course bundle or to a group of existing customers?](https://help.kajabi.com/articles/products/courses/can-i-add-a-new-digital-course-to-an-individual-customers-course-bundle-or-to-a-group-of-existing-customers.md): Grant Offers to give customers access to Courses. - [Can I add Products to the product catalogue?](https://help.kajabi.com/articles/products/courses/can-i-add-new-products-to-the-product-catalogue.md): Add Offers to a Store Page. - [Can I create a Course that is xAPI compliant?](https://help.kajabi.com/articles/products/courses/can-i-create-a-course-that-is-xapi-compliant.md): Kajabi does not support xAPI compliance for Courses. - [Can I create a Course with a video plus multiple PDFs and PowerPoint presentations?](https://help.kajabi.com/articles/products/courses/can-i-create-a-course-with-a-video-plus-multiple-pdfs-and-powerpoint-presentations.md): Add videos and downloadable files to Course lessons. - [Can I edit a video and break it into segments for Course modules?](https://help.kajabi.com/articles/products/courses/can-i-edit-a-video-and-break-it-into-segments-for-my-course-modules.md): Video editing options when uploading content to Courses. - [Can I export a digital Course for analysis?](https://help.kajabi.com/articles/products/courses/can-i-export-my-digital-course-including-the-product-details-in-xlsx-or-json-for-analysis.md): Export a Course Template and back up product details. - [Can I export Products and all properties (xlsx or JSON)?](https://help.kajabi.com/articles/products/courses/can-i-export-products-and-all-properties-xlsx-or-json.md): Export a Course Template and back up content. - [Can I generate certificates for participants upon completion?](https://help.kajabi.com/articles/products/courses/can-i-generate-certificates-for-participants-upon-completion.md): Create and send Certificates of Completion to customers. - [Can I give access to digital books?](https://help.kajabi.com/articles/products/courses/can-i-give-access-to-digital-books.md): Share digital books with customers through downloads or links. - [Can I import existing Courses to Kajabi?](https://help.kajabi.com/articles/products/courses/can-i-import-existing-courses-to-kajabi.md): The process for migrating Courses to Kajabi. - [Can I manage a large number of video Courses?](https://help.kajabi.com/articles/products/courses/can-i-manage-a-large-number-of-video-courses.md): Course limits and capabilities on different Kajabi plans. - [Can I manage Products?](https://help.kajabi.com/articles/products/courses/can-i-manage-my-products.md): Maintain full control over Products in Kajabi. - [Can I rate a Course?](https://help.kajabi.com/articles/products/courses/can-i-rate-a-course.md): Options for collecting Course feedback and ratings from customers. - [Can I reuse a video that I have previously uploaded to a Product?](https://help.kajabi.com/articles/products/courses/can-i-reuse-a-video-that-i-have-previously-uploaded-to-a-product.md): Reuse videos from one Product lesson in another by copying the video link. - [Can I search a product catalog based on product properties?](https://help.kajabi.com/articles/products/courses/can-i-search-a-product-catalog-based-on-product-properties.md): Browse Products and build a Store Page for customers. - [Can I sell blended Products?](https://help.kajabi.com/articles/products/courses/can-i-sell-blended-products.md): Create Products with blended content and understand selling options. - [Can I sell physical events or classes with Kajabi?](https://help.kajabi.com/articles/products/courses/can-i-sell-physical-events-or-classes-with-kajabi.md): Use Ghost Offers to sell physical events, classes, and coaching sessions. - [Can I sell physical products with Kajabi?](https://help.kajabi.com/articles/products/courses/can-i-sell-physical-products-with-kajabi.md): Sell physical products using Shopify Buy Buttons or Zapier integrations. - [Can I sell webinars and in-person trainings with Kajabi?](https://help.kajabi.com/articles/products/courses/can-i-sell-webinars-and-in-person-trainings-with-kajabi.md): Sell webinars and in-person training sessions using Kajabi Offers. - [Course completion certificates](https://help.kajabi.com/articles/products/courses/course-completion-certificates.md): Create and send certificates to customers who complete a Course. - [Course downloads](https://help.kajabi.com/articles/products/courses/course-downloads.md): Add and manage downloadable files in Course lessons. - [Course modules](https://help.kajabi.com/articles/products/courses/course-modules.md): Create, organize, and manage modules and submodules in Courses. - [Course quizzes](https://help.kajabi.com/articles/products/courses/course-quizzes.md): Test customer knowledge with graded or non-graded quizzes. - [Course templates](https://help.kajabi.com/articles/products/courses/course-templates.md): Install, customize, and activate templates for Courses. - [Courses overview](https://help.kajabi.com/articles/products/courses/courses-overview.md): Create and manage Courses to teach customers through visual and written content. - [Create a Course paywall](https://help.kajabi.com/articles/products/courses/create-a-course-paywall.md): Add a paywall to a Course to gate content and drive conversions. - [Create a lesson](https://help.kajabi.com/articles/products/courses/create-a-lesson.md): Create, edit, and publish lessons in a Course. - [Create a submodule in a Course](https://help.kajabi.com/articles/products/courses/create-a-submodule-in-a-course-product.md): Use submodules to further organize Course content within modules. - [Create quality Course content from home](https://help.kajabi.com/articles/products/courses/creating-quality-course-content-from-your-home.md): Simple tips to use what you already have to create professional course videos. - [Customize a cohort-based Course](https://help.kajabi.com/articles/products/courses/customize-your-cohort-based-course.md): View, add, and delete cohorts, update cohort product details, and edit cohort content and settings. - [Delete a Product](https://help.kajabi.com/articles/products/courses/delete-a-product.md): Remove outdated or unused Products from a site. - [Download videos from Courses or Pages](https://help.kajabi.com/articles/products/courses/download-videos-from-courses-or-pages.md): Download videos uploaded to Kajabi to store and easily access them. - [Edit member welcome emails](https://help.kajabi.com/articles/products/courses/edit-member-welcome-emails.md): Customize the automated welcome email sent to customers. - [Edit Course details](https://help.kajabi.com/articles/products/courses/edit-your-course-details.md): Access and edit a Course title, description, and thumbnail. - [Drip Course content time limit](https://help.kajabi.com/articles/products/courses/how-far-in-advance-can-you-drip-a-course.md): Content can be dripped up to two years (731 days) in advance from a customer access date. - [Add and update instructor information](https://help.kajabi.com/articles/products/courses/how-to-add-and-update-your-instructor-information.md): Add instructor information to Course and lesson page templates. - [Allow video downloads in a Product post](https://help.kajabi.com/articles/products/courses/how-to-allow-your-video-content-to-be-downloadable-in-a-product-post.md): Give customers the ability to download video content from Kajabi Courses. - [Bulk upload videos in a Product](https://help.kajabi.com/articles/products/courses/how-to-bulk-upload-videos-in-a-product.md): Save time by uploading multiple videos at once to a Product. - [Change the background color of a Course with Premier](https://help.kajabi.com/articles/products/courses/how-to-change-the-background-color-of-a-course-product-template-with-premier.md): Customize the background color of a Course template. - [Change the Course post player color with Momentum](https://help.kajabi.com/articles/products/courses/how-to-change-the-color-of-the-course-product-post-player-with-momentum.md): Change the color of the post player in a Course when using the Momentum theme. - [Change the player color in a Product with Premier](https://help.kajabi.com/articles/products/courses/how-to-change-the-color-of-the-player-in-a-product-with-premier.md): Change the color of the post player in a Product when using the Premier theme. - [Change Product display order in the customer library](https://help.kajabi.com/articles/products/courses/how-to-change-the-order-of-your-products-in-your-customers-library.md): Rearrange the display order of Products in the customer library. - [Combine audio with images for a Course](https://help.kajabi.com/articles/products/courses/how-to-combine-audio-with-images-to-upload-to-your-course-product.md): Create an audio-visual learning experience by adding audio to images. - [Create a cohort-based Course](https://help.kajabi.com/articles/products/courses/how-to-create-a-cohort-based-course.md): Create a Course that students progress through together in cohort groups. - [Customize the template for a cohort-based Course](https://help.kajabi.com/articles/products/courses/how-to-customize-the-template-for-a-cohort-based-course.md): Customize the design template for a cohort-based Course. - [Customize a Course with Premier](https://help.kajabi.com/articles/products/courses/how-to-customize-your-course-product-with-premier.md): Customize the look and feel of a Course according to a brand with Premier. - [Customize a Course with the Momentum template](https://help.kajabi.com/articles/products/courses/how-to-customize-your-course-product-with-the-momentum-template.md): Design a Course with the Momentum template. - [Disconnect accounts from the Kajabi File Picker](https://help.kajabi.com/articles/products/courses/how-to-disconnect-your-accounts-from-the-kajabi-file-picker.md): Disconnect Dropbox or Google Drive accounts from the File Picker in Kajabi. - [Duplicate a Course](https://help.kajabi.com/articles/products/courses/how-to-duplicate-your-course-product.md): Create a copy of Course content to reuse across Products or sites. - [Embed a calendar in a Course](https://help.kajabi.com/articles/products/courses/how-to-embed-a-calendar-in-a-course-product.md): Embed a calendar in the main page of a Course to display availability and upcoming events. - [Embed a Community Channel in a Course](https://help.kajabi.com/articles/products/courses/how-to-embed-a-community-channel-in-your-course.md): Link a Course and Community by adding a Channel widget to a Course template. - [Embed a GIF in a Product lesson](https://help.kajabi.com/articles/products/courses/how-to-embed-a-gif-in-your-product-lesson.md): Add animated GIFs to the body of a Product lesson using GIPHY. - [Embed videos in a Product lesson](https://help.kajabi.com/articles/products/courses/how-to-embed-videos-in-a-product-lesson.md): Embed video into a Product lesson from external hosting platforms such as YouTube or Vimeo. - [Enable Premium Video](https://help.kajabi.com/articles/products/courses/how-to-enable-premium-video.md): Stream and record live sessions in High-Definition (HD) for Courses with Premium Video. - [Go live in a Course](https://help.kajabi.com/articles/products/courses/how-to-go-live-in-your-course-product.md): Add a live video session to Courses to engage with customers. - [Import a Course lesson or quiz](https://help.kajabi.com/articles/products/courses/how-to-import-a-course-lesson-or-quiz.md): Add a course lesson or quiz from an existing Course to save time. - [Link a Community to a Course sidebar](https://help.kajabi.com/articles/products/courses/how-to-link-to-your-community-in-your-course-sidebar.md): Add a Community link to a Course sidebar so customers can navigate between products. - [Manage Course comments](https://help.kajabi.com/articles/products/courses/how-to-manage-course-comments.md): Configure and manage comments in Course lessons. - [Preview a Product](https://help.kajabi.com/articles/products/courses/how-to-preview-your-product.md): Test the customer experience by previewing a Product before publishing. - [Rename and export a Course template](https://help.kajabi.com/articles/products/courses/how-to-rename-and-export-your-course-product-template.md): Rename a Course template or export it as a .zip file. - [Rename the Downloads section title in a Product](https://help.kajabi.com/articles/products/courses/how-to-rename-the-title-of-the-downloads-section-in-a-product.md): Customize the title of the Downloads section within a Product post. - [Reorder lessons and modules in a Course](https://help.kajabi.com/articles/products/courses/how-to-reorder-lessons-and-modules-in-a-course-product.md): Drag and drop to rearrange the order of lessons, modules, and submodules. - [Schedule Live Video sessions for a cohort-based Course](https://help.kajabi.com/articles/products/courses/how-to-schedule-live-video-sessions-for-a-cohort-based-course.md): Engage with students in real time by scheduling Live Sessions using Kajabi Live Video or a custom location. - [Search through closed captions in a Product lesson video](https://help.kajabi.com/articles/products/courses/how-to-search-through-closed-captions-in-a-product-lesson-video.md): Find specific text in closed captions for a lesson video. - [Segment, tag, or track customers by video watch progress](https://help.kajabi.com/articles/products/courses/how-to-segment-tag-or-track-customers-who-have-watched-a-portion-of-a-video.md): Create an automation to track customers who have not completed a video in a Course lesson. - [Set up a live Zoom call or webinar for Product customers](https://help.kajabi.com/articles/products/courses/how-to-set-up-a-live-zoom-call-or-webinar-for-customers-of-a-product.md): Create one-on-one calls or host a live webinar for Product customers with Kajabi and Zoom. - [Troubleshoot videos not uploading or playing](https://help.kajabi.com/articles/products/courses/how-to-troubleshoot-videos-not-uploading-or-playing.md): Resolve issues with video uploads or playback in Kajabi. - [Upload an audio file to a Product lesson](https://help.kajabi.com/articles/products/courses/how-to-upload-an-audio-file-to-a-product-lesson.md): Replace the video player with a native audio player by uploading an audio file to a lesson. - [Upload media to a Course lesson](https://help.kajabi.com/articles/products/courses/how-to-upload-media-to-your-course-lesson.md): Add video, audio, or an assessment to a Course lesson. - [Use YouTube Live in a Product](https://help.kajabi.com/articles/products/courses/how-to-use-youtube-live-in-a-product.md): Stream an event, class, or workshop directly within a Product using YouTube Live. - [View a Course Outline](https://help.kajabi.com/articles/products/courses/how-to-view-your-course-outline.md): View a Course Outline to add, remove, and rearrange Lessons and Modules. - [If I duplicate a Product will the customers be duplicated as well?](https://help.kajabi.com/articles/products/courses/if-i-duplicate-a-product-will-the-customers-of-the-product-be-duplicated-over-as-well.md): Duplicating a Product does not include customers — only the Product itself is duplicated. - [Is Kajabi SCORM compliant?](https://help.kajabi.com/articles/products/courses/is-kajabi-scorm-compliant.md): Kajabi does not support LMS formats like SCORM or HTML5 files. - [Kajabi Transcripts, Translations, and Dubbing](https://help.kajabi.com/articles/products/courses/kajabi-transcripts-translations-dubbing.md): Make video content more accessible and reach global audiences with transcripts, translations, and dubbing. - [Configure Lesson Player auto advance](https://help.kajabi.com/articles/products/courses/lesson-player-auto-advance-feature.md): Set the auto advance timer and accent color in the Lesson Player. - [Lock content in a Course](https://help.kajabi.com/articles/products/courses/lock-content-in-your-course-product.md): Require customers to complete lessons or pass quizzes before accessing the next module or submodule. - [Manage Course lessons](https://help.kajabi.com/articles/products/courses/manage-course-lessons.md): Import, move, preview, and delete lessons in a Course. - [Schedule and drip content in Courses](https://help.kajabi.com/articles/products/courses/schedule-and-drip-content-in-courses.md): Customize when content becomes available by scheduling or dripping Course content over time. - [Send a Product announcement](https://help.kajabi.com/articles/products/courses/send-a-product-announcement.md): Share upcoming events, launches, and product changes with Course customers. - [Share a Course](https://help.kajabi.com/articles/products/courses/share-your-course.md): Share a Course with social media platforms, email campaigns, and more. - [Supported audio formats](https://help.kajabi.com/articles/products/courses/supported-audio-formats.md): Kajabi supports many common audio formats, with MP3 recommended for best performance. - [Try different product types with draft mode](https://help.kajabi.com/articles/products/courses/try-different-product-types-with-draft-mode.md): Test different product types before upgrading a plan by using draft mode. - [Upload videos to Course lessons](https://help.kajabi.com/articles/products/courses/uploading-videos-to-your-course-product-lessons.md): Upload videos to Course lessons using Dropbox, Google Drive, and direct links. - [Use the search bar inside a Course](https://help.kajabi.com/articles/products/courses/using-the-search-bar-inside-your-course-product.md): Customers can use the search bar to find lessons and modules in a Course. - [Video formats supported by Kajabi](https://help.kajabi.com/articles/products/courses/video-formats-supported-by-kajabi.md): Kajabi supports many common video formats, with MP4 recommended for best performance. - [What happens to dripped content if a customer cancels and repurchases?](https://help.kajabi.com/articles/products/courses/what-happens-to-dripped-content-if-a-customer-cancels-and-repurchases.md): When a customer cancels and repurchases, their drip start date resets to the repurchase date. - [Maximum file size for downloadable attachments](https://help.kajabi.com/articles/products/courses/what-is-the-maximum-file-size-for-downloadable-attachments.md): Maximum file sizes for downloadable attachments vary across Kajabi features. - [Maximum video file size](https://help.kajabi.com/articles/products/courses/what-is-the-maximum-video-file-size.md): The maximum file size for video uploads on any page is 4GB. - [Can I make a Course available in a webshop?](https://help.kajabi.com/articles/products/courses/when-a-digital-course-is-edited-and-ready-can-i-make-it-available-in-my-webshop.md): Sell a Course through a Kajabi Store Page or grant access to existing customers. - [Create clickable timestamps for videos](https://help.kajabi.com/articles/products/create-clickable-timestamps-for-videos.md): Share direct links with your customers to specific moments in your videos. - [Create and sell downloadable files as a Product](https://help.kajabi.com/articles/products/downloads/create-sell-downloadable-files-as-a-product.md): Package and sell your downloadable files behind a secured paywall with Kajabi's Downloads Product. - [Compare Downloads Product and Course downloads](https://help.kajabi.com/articles/products/downloads/difference-between-the-downloads-product-and-downloads-in-a-course-product.md): Choose between the standalone Downloads Product and downloadable files within a Course. - [Understand Downloads security](https://help.kajabi.com/articles/products/downloads/how-kajabi-protects-your-downloads.md): Learn how Kajabi protects your downloadable content with temporary URLs and login requirements. - [Add a Newsletter subscription to your business](https://help.kajabi.com/articles/products/newsletters/5-reasons-you-should-add-a-newsletter-subscription-to-your-online-business.md): Explore the benefits and potential drawbacks of incorporating a Newsletter into your marketing efforts. - [Improve email Newsletter deliverability](https://help.kajabi.com/articles/products/newsletters/best-practices-to-improve-deliverability-of-your-email-newsletters.md): Follow best practices to ensure your Newsletter emails reach subscribers' inboxes and improve engagement. - [Customize a Newsletter](https://help.kajabi.com/articles/products/newsletters/customizing-your-newsletter.md): Design the look and feel of your Newsletter for subscribers and visitors, including theme settings, text editing, and post configuration. - [Customize a Newsletter: Premier vs. Encore](https://help.kajabi.com/articles/products/newsletters/customizing-your-newsletter-premier-vs-encore.md): Compare Newsletter customization options between Premier and Encore website themes. - [Create exclusive Newsletter access](https://help.kajabi.com/articles/products/newsletters/how-to-create-exclusive-access-to-your-newsletter.md): Use Subscriber and Paywall breaks to protect and monetize Newsletter content. - [Grow Newsletter subscribers](https://help.kajabi.com/articles/products/newsletters/how-to-grow-your-newsletter-subscribers.md): Build a strong subscriber base for your Newsletter with a simple, effective growth roadmap. - [Launch a successful Newsletter subscription](https://help.kajabi.com/articles/products/newsletters/how-to-launch-a-successful-newsletter-subscription.md): Plan and execute a Newsletter subscription strategy that connects with your audience and drives business growth. - [Manage Newsletter comments](https://help.kajabi.com/articles/products/newsletters/how-to-manage-newsletter-comments.md): Configure comment visibility as visible, hidden, or locked per post when comments are enabled for a Newsletter Product. - [View Newsletter analytics](https://help.kajabi.com/articles/products/newsletters/newsletter-analytics.md): Track key metrics across overview, audience, engagement, and health to optimize your Newsletter strategy. - [Get started with Newsletters](https://help.kajabi.com/articles/products/newsletters/newsletters.md): Create, customize, publish, and track Newsletter posts to grow your audience and build your business. - [Newsletters overview](https://help.kajabi.com/articles/products/newsletters/newsletters-overview.md): Create, publish, and manage Newsletter subscribers to grow your audience and build your business. - [Understand RSS feeds](https://help.kajabi.com/articles/products/podcasts/how-do-rss-feeds-work.md): Explore what an RSS feed is and how RSS feeds work with Kajabi Podcasts. - [Create a private Podcast](https://help.kajabi.com/articles/products/podcasts/how-to-create-a-private-podcast.md): Create, manage, and publish your private Podcast in Kajabi. - [Create and publish Podcasts with Kajabi](https://help.kajabi.com/articles/products/podcasts/how-to-create-and-publish-podcast-products-with-kajabi.md): Create, import, edit, manage, and publish Podcast episodes - [Customize a Podcast page](https://help.kajabi.com/articles/products/podcasts/how-to-customize-a-podcast-product-page.md): Adjust the color scheme of your Podcast page to match your branding. - [Listen to a private Podcast on the Apple Podcast app](https://help.kajabi.com/articles/products/podcasts/how-to-listen-to-a-private-podcast-on-the-apple-podcast-app.md): Allow your customers to listen to your private podcast on their favorite listening apps. - [Remove a Podcast from third-party platforms](https://help.kajabi.com/articles/products/podcasts/how-to-remove-your-podcast-from-third-party-platforms.md): Remove your Podcast from Apple Podcasts, Google Podcasts, and Spotify after deleting it from Kajabi. - [Import an existing Podcast onto Kajabi](https://help.kajabi.com/articles/products/podcasts/importing-an-existing-podcast-onto-kajabi.md): Migrate your Podcast to Kajabi seamlessly without any downtime. - [Kajabi Podcasts FAQ](https://help.kajabi.com/articles/products/podcasts/kajabi-podcasts-faq.md): Answers to frequently asked questions about Podcasts in Kajabi. - [Redirect a Podcast](https://help.kajabi.com/articles/products/podcasts/redirecting-your-podcast.md): Redirect your Podcast off of Kajabi to another hosting provider. - [Start a successful Podcast for your business](https://help.kajabi.com/articles/products/podcasts/the-guide-to-starting-a-successful-podcast-for-your-business.md): Launch a podcast in nine steps to sell online courses and grow your online business. - [Kajabi Products overview](https://help.kajabi.com/articles/products/products-overview/kajabi-products-overview.md): Build, market, and sell Courses, Communities, Coaching, Podcasts, Newsletters, and Downloads — all from one platform. - [Increase engagement and sales with email strategies](https://help.kajabi.com/articles/resources/business-guides/3-effective-email-strategies-to-increase-engagement-and-boost-sales-in-kajabi.md): Build effective email campaigns that nurture leads, inspire action, and convert subscribers into customers. - [Run a successful challenge to grow a business](https://help.kajabi.com/articles/resources/business-guides/3-tips-for-running-a-successful-challenge-to-grow-your-business.md): Engage your audience and create momentum for your business with a well-planned challenge. - [Brainstorm a product](https://help.kajabi.com/articles/resources/business-guides/brainstorm-your-product.md): Position your expertise into a product your audience will find valuable by defining benefits, scope, and structure. - [Choose a niche](https://help.kajabi.com/articles/resources/business-guides/choosing-your-niche.md): Define which market you want to serve using your existing knowledge and passions. - [Copy snippets to captivate an audience](https://help.kajabi.com/articles/resources/business-guides/copy-snippets-to-captivate-your-audience-in-seconds.md): Marketing copy templates you can customize for your website and sales pages to connect with your audience and drive conversions. - [Get started with SEO](https://help.kajabi.com/articles/resources/business-guides/get-started-with-seo.md): Learn the basics of search engine optimization to improve your site's visibility and attract more visitors. - [Build an automated sales funnel for course sales](https://help.kajabi.com/articles/resources/business-guides/how-to-build-an-automated-sales-funnel-to-increase-your-course-sales-on-kajabi.md): Learn how to create an automated sales funnel that generates consistent course sales while you focus on what you love. - [Create a profitable Kajabi sales page](https://help.kajabi.com/articles/resources/business-guides/how-to-create-a-profitable-kajabi-sales-page.md): Learn how to craft a high-converting sales page with persuasive copy, clear offers, and effective design. - [Strategies to engage and motivate affiliates](https://help.kajabi.com/articles/resources/business-guides/strategies-to-engage-and-motivate-your-affiliates.md): Build a strong affiliate community that enhances performance and drives business success. - [Master the 5 stages of a Kajabi sales funnel](https://help.kajabi.com/articles/resources/business-guides/the-5-key-stages-of-a-successful-kajabi-sales-funnel-and-how-to-master-each-one.md): Optimize the five essential stages of an effective sales funnel for maximum conversions. - [Understand the psychology of selling](https://help.kajabi.com/articles/resources/business-guides/understanding-the-psychology-of-selling.md): Create sales pages that connect with the audience on a psychological level and drive conversions. - [Value-driven branding to build trust and engagement](https://help.kajabi.com/articles/resources/business-guides/value-driven-branding-connect-with-your-audience-to-build-trust-and-boost-engagement.md): Build authentic connections with the audience through value-driven branding that prioritizes purpose over aesthetics. - [Create custom campaign links](https://help.kajabi.com/articles/resources/kajabi-partner-program/creating-custom-campaign-links-as-a-kajabi-partner.md): Use any URL as a trackable Kajabi Partner link with custom campaign links. - [FTC guidelines](https://help.kajabi.com/articles/resources/kajabi-partner-program/ftc-guidelines.md): Understand FTC disclosure requirements for Kajabi Partners and endorsers. - [Helpful tips for Kajabi Partners](https://help.kajabi.com/articles/resources/kajabi-partner-program/helpful-tips-for-kajabi-partners.md): Discover effective strategies for promoting Kajabi and earning referral commissions. - [Access managed sites in the Partner Dashboard](https://help.kajabi.com/articles/resources/kajabi-partner-program/how-to-access-managed-sites-in-your-partner-dashboard.md): View and manage all Kajabi sites where you are a collaborator from the Partner Dashboard. - [Become a Kajabi Partner](https://help.kajabi.com/articles/resources/kajabi-partner-program/how-to-become-a-kajabi-partner.md): Apply for the Kajabi Partner Program and start earning commissions by referring Heroes. - [Create a development site in the Partner Dashboard](https://help.kajabi.com/articles/resources/kajabi-partner-program/how-to-create-a-development-site-in-your-partner-dashboard.md): Build, test, and showcase client work using development sites in the Partner Dashboard. - [Create a referral signup email](https://help.kajabi.com/articles/resources/kajabi-partner-program/how-to-create-a-referral-signup-email.md): Send welcome messages and deliver bonuses to referrals who sign up through a Partner link. - [Create and share Partner Campaign links](https://help.kajabi.com/articles/resources/kajabi-partner-program/how-to-create-share-partner-campaign-links.md): Generate campaign links, personalize referral funnels, and track campaign performance from the Partner Dashboard. - [Track Partner referrals](https://help.kajabi.com/articles/resources/kajabi-partner-program/how-to-track-your-partner-referrals.md): View all referred creators and their current status from the Partner Referral page. - [View the Partner Dashboard](https://help.kajabi.com/articles/resources/kajabi-partner-program/how-to-view-your-partner-dashboard.md): Track referrals, view earnings, manage campaigns, and monitor partner tier status from the Partner Dashboard. - [Kajabi Partner Program FAQs](https://help.kajabi.com/articles/resources/kajabi-partner-program/kajabi-partner-program-faq.md): Find answers to common questions about partner tiers, commissions, payouts, and account eligibility. - [Partner Payout Report and Partner Transaction Report](https://help.kajabi.com/articles/resources/kajabi-partner-program/partner-payout-report-partner-transaction-report.md): Track monthly earnings and understand payout statuses using the Partner Payout and Transaction Reports. - [Partner Program overview](https://help.kajabi.com/articles/resources/kajabi-partner-program/partner-program-overview.md): Explore commission tiers, partner types, and program benefits available through the Kajabi Partner Program. - [Partner Terms and Services FAQs](https://help.kajabi.com/articles/resources/kajabi-partner-program/updated-partner-terms-services-faqs.md): Find answers to common questions about how the Partner Program Terms and Services affect you and your business. - [Update the Partner PayPal email](https://help.kajabi.com/articles/resources/kajabi-partner-program/updating-your-partner-paypal-email.md): Change the PayPal email associated with Partner payouts to receive commissions at a different PayPal account. - [Use the Template Store and upload a template](https://help.kajabi.com/articles/resources/kajabi-templates/how-to-use-kajabis-template-store-upload-your-template.md): Browse the Template Store for professionally designed templates and upload them to your Kajabi site. - [Template customer FAQs](https://help.kajabi.com/articles/resources/kajabi-templates/template-customer-faqs.md): Frequently asked questions about purchasing and using templates from the Template Store. - [Template developer FAQs](https://help.kajabi.com/articles/resources/kajabi-templates/template-developer-faqs.md): Frequently asked questions about providing templates to the Template Store. - [Create standout Template Store templates](https://help.kajabi.com/articles/resources/kajabi-templates/template-tips-for-template-developers.md): Apply best practices and meet submission requirements for templates that Heroes love. - [Content safety and security](https://help.kajabi.com/articles/resources/resources/can-you-guarantee-my-content-is-safe-and-securely-stored.md): Understand Kajabi's commitment to protecting and securing your information. - [EU GDPR compliance in Kajabi](https://help.kajabi.com/articles/resources/resources/does-kajabi-contain-all-the-necessary-tools-to-be-eu-gdpr-compliant.md): Understand how Kajabi helps you comply with GDPR and other privacy regulations. - [Kajabi sales calls and demos](https://help.kajabi.com/articles/resources/resources/does-kajabi-offer-sales-calls-or-demos.md): Explore available resources to evaluate Kajabi, including the free trial. - [Access Kajabi University](https://help.kajabi.com/articles/resources/resources/how-to-access-your-kajabi-university.md): Find and explore Kajabi University courses directly from the Dashboard. - [Design logos and graphics with Canva](https://help.kajabi.com/articles/resources/resources/how-to-design-logos-and-graphics-with-canva.md): Use Canva to create images, logos, and graphics for your Kajabi courses and business. - [Submit a translation request](https://help.kajabi.com/articles/resources/resources/how-to-make-a-translation-request.md): Request corrections for grammatical errors or inaccurate wording in the Kajabi app. - [Submit product feedback and ideas](https://help.kajabi.com/articles/resources/resources/how-to-submit-product-feedback-and-ideas.md): Use the Kajabi Ideas Portal to share feedback, submit feature requests, and influence the product roadmap. - [Kajabi Glossary](https://help.kajabi.com/articles/resources/resources/kajabi-glossary.md): Explore Kajabi features, terminology, and how they are used within the platform. - [Kajabi Hero Community (KHC)](https://help.kajabi.com/articles/resources/resources/kajabi-hero-community-khc.md): Access and interact with the community built for Kajabi Heroes. - [Kajabi Labs](https://help.kajabi.com/articles/resources/resources/kajabi-labs.md): Test Kajabi features in development and provide feedback to help shape the platform. - [Kajabi swag shipment changes](https://help.kajabi.com/articles/resources/resources/kajabi-swag-shipment-changes.md): Understand EU VAT rules and how they impact Kajabi swag shipments. - [Kajabi's Data Protection Addendum and Standard Contractual Clauses](https://help.kajabi.com/articles/resources/resources/kajabis-updated-data-protection-addendum-for-the-new-standard-contractual-clauses.md): Answers to frequently asked questions about Kajabi's Data Protection Addendum and Standard Contractual Clauses. - [Resolve login issues across platforms](https://help.kajabi.com/articles/resources/resources/resolving-login-issues-on-kajabi-across-platforms.md): Identify and fix common login challenges on desktop, mobile app, and web browser environments. - [Explore available CRM tools](https://help.kajabi.com/articles/resources/resources/which-human-resource-hr-tools-are-provided.md): Track your customers, contacts, and site performance using Kajabi's built-in CRM tools. - [Dedicated Customer Success Manager (CSM)](https://help.kajabi.com/articles/resources/support/dedicated-customer-success-manager-csm.md): Accelerate business growth with a dedicated strategic partner inside Kajabi. - [Migrate content to Kajabi](https://help.kajabi.com/articles/resources/support/does-kajabi-offer-migration-services.md): Find resources and webinars to help you move content from another platform or between Kajabi sites. - [Contact Kajabi support](https://help.kajabi.com/articles/resources/support/how-to-contact-kajabi-support.md): Reach our support team through the conversation widget or email. - [Send a screenshot to support](https://help.kajabi.com/articles/resources/support/how-to-send-a-screenshot-to-support.md): Capture and share a screenshot with our support team to help troubleshoot issues faster. - [Send a video to support](https://help.kajabi.com/articles/resources/support/how-to-send-a-video-to-support.md): Record and share a video with our support team to help troubleshoot issues faster. - [Resolve a 500 error on Kajabi](https://help.kajabi.com/articles/resources/support/why-am-i-seeing-a-500-error-when-accessing-kajabi-and-how-can-i-resolve-it.md): Identify the cause of a 500 error and take steps to restore access to your Kajabi site. - [Activate Affiliate commission](https://help.kajabi.com/articles/sales/affiliates/activate-affiliate-commission.md): Set up affiliate commissions for your Offers to credit transactions to your Affiliate Users. - [Affiliate Challenges](https://help.kajabi.com/articles/sales/affiliates/affiliate-challenges.md): Create performance-based incentives for your affiliates with milestone-based rewards. - [Affiliate Coupons vs. Affiliate Share Links](https://help.kajabi.com/articles/sales/affiliates/affiliate-coupons-vs-affiliate-share-links.md): Understand the difference between Affiliate Coupons and Share Links for tracking conversions. - [Affiliate FAQs](https://help.kajabi.com/articles/sales/affiliates/affiliate-faqs.md): Common questions about how Kajabi's Affiliate feature works. - [Affiliate Portal overview](https://help.kajabi.com/articles/sales/affiliates/affiliate-portal-overview.md): Resources and reports available to your affiliates from their Affiliate Portal. - [Affiliates overview](https://help.kajabi.com/articles/sales/affiliates/affiliates-overview.md): Use Kajabi's Affiliates feature to leverage partnerships and grow your sales through referral commissions. - [Create Affiliate Coupons](https://help.kajabi.com/articles/sales/affiliates/create-affiliate-coupons.md): Give your affiliates custom coupon codes to share and track conversions. - [Create an Affiliate Share link](https://help.kajabi.com/articles/sales/affiliates/create-an-affiliate-share-link.md): Generate and edit an Affiliate Share link to maximize affiliate revenue. - [Manage Affiliate payouts and commissions](https://help.kajabi.com/articles/sales/affiliates/manage-affiliate-payouts-and-commissions.md): Track, manage, and pay affiliate commissions in Kajabi with confidence. - [Manage affiliates](https://help.kajabi.com/articles/sales/affiliates/manage-your-affiliates.md): Create, invite, and manage Affiliate Users in your Kajabi Affiliate Dashboard. - [Manually add an Affiliate Transaction](https://help.kajabi.com/articles/sales/affiliates/manually-add-an-affiliate-transaction.md): Create manual affiliate transactions for untracked sales, special cases, or bonuses. - [Troubleshoot Affiliate commission](https://help.kajabi.com/articles/sales/affiliates/troubleshooting-affiliate-commission.md): Identify why an affiliate may not have been credited for purchases made on your site. - [Understand the Affiliates commission workflow](https://help.kajabi.com/articles/sales/affiliates/understanding-the-affiliates-commission-workflow.md): Affiliate commission statuses, payout management, and refund handling explained. - [Update existing Affiliate Transactions as paid](https://help.kajabi.com/articles/sales/affiliates/update-existing-affiliate-transactions-as-paid.md): Mark outstanding affiliate transactions as paid when setting up the Affiliates commission workflow. - [2018 checkout vs. 2016 legacy checkout templates](https://help.kajabi.com/articles/sales/checkout/2018-checkout-vs-2016-legacy-checkout-templates.md): Compare the 2018 checkout template with the 2016 legacy checkout template. - [Add pricing options to an offer with Enhanced Checkout](https://help.kajabi.com/articles/sales/checkout/add-pricing-options-to-an-offer-with-enhanced-checkout.md): Add multiple pricing options like one-time payments, payment plans, and subscriptions to a single Offer. - [Add in-person trainings and webinars with different checkouts](https://help.kajabi.com/articles/sales/checkout/can-i-add-in-person-trainings-and-webinars-and-create-different-checkout-experiences.md): Sell in-person trainings and webinars with customized checkout experiences. - [Allow customers to purchase licenses in bulk](https://help.kajabi.com/articles/sales/checkout/can-i-allow-customers-to-purchase-licenses-in-bulk-and-grant-access-to-their-staff.md): Sell bulk licenses where a company pays and you grant access to employees. - [Create an offer checkout page with different pricing](https://help.kajabi.com/articles/sales/checkout/can-i-create-an-offer-checkout-page-with-different-pricing.md): Create multiple Offers with different pricing on a single sales page. - [Create different checkout modes by product type](https://help.kajabi.com/articles/sales/checkout/can-i-create-different-checkout-modes-depending-on-the-type-of-product.md): Set up multiple Offers with different checkout pages and custom fields for each product type. - [Use a checkout page with another platform](https://help.kajabi.com/articles/sales/checkout/can-i-use-my-checkout-page-with-another-platform.md): Share a Kajabi checkout page link on third-party platforms. - [Customize the checkout page link](https://help.kajabi.com/articles/sales/checkout/can-you-customize-the-checkout-page-link.md): Use link shorteners like Bitly to customize checkout page URLs. - [Checkout opt-in requirements and permissions](https://help.kajabi.com/articles/sales/checkout/checkout-opt-in-requirements-and-permissions.md): Understand email opt-in laws for the US, EU, Canada, and Australia to ensure checkout compliance. - [Checkout page editor (previous updates)](https://help.kajabi.com/articles/sales/checkout/checkout-page-editor-previous-updates.md): Review historical updates to the checkout editor including CTA text, mobile layout, login, and pricing options. - [Optimize the Kajabi Cart shopping experience](https://help.kajabi.com/articles/sales/checkout/creating-a-seamless-shopping-experience-with-kajabi-cart-use-cases-best-practices.md): Best practices for using Kajabi Cart with storefronts, offer pages, coupons, and optimization tips. - [Customize checkout text with Language Overrides](https://help.kajabi.com/articles/sales/checkout/customize-checkout-text-with-language-overrides.md) - [Customize a checkout page](https://help.kajabi.com/articles/sales/checkout/customize-your-checkout-page.md): Use the checkout editor to customize page content, design, form fields, and settings. - [Enhanced Checkout overview](https://help.kajabi.com/articles/sales/checkout/enhanced-checkout-overview.md): Explore Enhanced Checkout features, settings, and customization options to optimize the sales experience. - [Change the zip code or postal ID field at checkout](https://help.kajabi.com/articles/sales/checkout/how-do-i-change-the-zip-code-or-postal-id-field-at-checkout.md): Understand how the zip code or postal ID field automatically adjusts based on the customer's card. - [Add a JavaScript tracking code to checkout pages](https://help.kajabi.com/articles/sales/checkout/how-to-add-a-javascript-tracking-code-to-your-checkout-pages.md): Add tracking codes like Google Analytics to checkout pages to monitor customer behavior. - [Add a second checkbox to checkout for compliance](https://help.kajabi.com/articles/sales/checkout/how-to-add-a-second-checkbox-to-your-checkout-for-compliance-requirements.md): Add custom checkboxes to a checkout page for compliance requirements like EU Consumer Rights. - [Add an Order Bump to an Offer](https://help.kajabi.com/articles/sales/checkout/how-to-add-an-order-bump-to-your-offer.md): Prompt customers to purchase an additional Product directly from the Checkout Page. - [Add terms and conditions to an offer (legacy checkout)](https://help.kajabi.com/articles/sales/checkout/how-to-add-terms-and-conditions-to-an-offer-legacy-checkout.md): Add a terms and conditions agreement to a legacy checkout page that customers must accept. - [Add testimonials to an offer](https://help.kajabi.com/articles/sales/checkout/how-to-add-testimonials-to-your-offer.md): Add customer testimonials to a checkout page to build trust and increase conversions. - [Change checkout page opt-in settings](https://help.kajabi.com/articles/sales/checkout/how-to-change-checkout-page-opt-in-settings.md): Configure email opt-in and saved card storage settings on a checkout page for customer privacy. - [Change checkout layout for mobile devices](https://help.kajabi.com/articles/sales/checkout/how-to-change-your-checkout-layout-for-mobile-devices.md): Customize where the checkout form appears on mobile devices for a better customer experience. - [Copy a checkout page link](https://help.kajabi.com/articles/sales/checkout/how-to-copy-your-checkout-page-link.md): Copy a checkout page URL to share it with potential customers through social media, email, or your website. - [Disable the purchase confirmation email](https://help.kajabi.com/articles/sales/checkout/how-to-disable-the-purchase-confirmation-email.md): Turn off the automatic purchase confirmation email sent to customers after they complete a purchase. - [Edit the text on the checkout page](https://help.kajabi.com/articles/sales/checkout/how-to-edit-the-text-on-the-checkout-page.md): Customize the text displayed on a checkout page to match your brand voice and messaging. - [Remove the banner from a checkout page](https://help.kajabi.com/articles/sales/checkout/how-to-remove-the-banner-from-your-checkout-page.md): Remove the banner image from a checkout page for a cleaner, more streamlined design. - [Sending Checkout Abandonment Emails](https://help.kajabi.com/articles/sales/checkout/how-to-send-an-email-after-a-customer-abandons-cart.md): Set up automated cart abandonment emails to recover lost sales when customers leave checkout early. - [Set up a donation button on a Kajabi page](https://help.kajabi.com/articles/sales/checkout/how-to-set-up-a-donation-button-on-your-kajabi-page.md): Add a PayPal donation button to Kajabi pages to accept contributions from your audience. - [Update checkout from 2016 to 2018](https://help.kajabi.com/articles/sales/checkout/how-to-update-your-checkout-from-2016-to-2018.md): Switch from the legacy 2016 checkout to the 2018 checkout for improved features and customer experience. - [Update the optional login requirement](https://help.kajabi.com/articles/sales/checkout/how-to-update-your-optional-login-requirement.md): Configure how customers log in during checkout to streamline the purchase experience. - [Use a custom message for checkout email opt-in](https://help.kajabi.com/articles/sales/checkout/how-to-use-a-custom-message-for-your-checkout-email-opt-in.md): Customize the email opt-in message displayed on checkout pages to improve customer consent and compliance. - [Kajabi Cart overview](https://help.kajabi.com/articles/sales/checkout/kajabi-cart-overview.md): Let customers purchase multiple products in one transaction with Kajabi Cart. - [Set up Kajabi Cart](https://help.kajabi.com/articles/sales/checkout/kajabi-cart-setup-guide.md): Configure Kajabi Cart so customers can purchase multiple products in a single transaction. - [Popup Checkout](https://help.kajabi.com/articles/sales/checkout/popup-checkout.md): Enable Popup Checkout to let customers purchase directly from any page without leaving your site. - [Troubleshooting checkout error messages](https://help.kajabi.com/articles/sales/checkout/troubleshooting-checkout-error-messages.md): Resolve common checkout error messages that may appear when customers try to purchase your offers. - [Upgrade offers to the Enhanced Kajabi Checkout](https://help.kajabi.com/articles/sales/checkout/upgrade-offers-to-the-enhanced-kajabi-checkout.md): Upgrade existing offers to the Enhanced Kajabi Checkout for improved conversion rates and a streamlined buying experience. - [Advanced Coupon usage scenarios](https://help.kajabi.com/articles/sales/coupons/advanced-coupon-usage-scenarios.md): Examples of how coupons apply to various payment plan and subscription scenarios. - [Create Coupon Codes in bulk](https://help.kajabi.com/articles/sales/coupons/creating-coupon-codes-in-bulk.md): Generate multiple single-use coupon codes at once for special promotions or selling licenses. - [Create Coupons](https://help.kajabi.com/articles/sales/coupons/how-to-create-a-coupon.md): Create special promotions or deals that are attached to Offers or an entire cart purchase. - [Create a Coupon in Stripe](https://help.kajabi.com/articles/sales/coupons/how-to-create-a-coupon-in-stripe.md): Create coupons directly in Stripe to give customers discounts after their initial purchase in Kajabi. - [Locate customers with coupons applied](https://help.kajabi.com/articles/sales/coupons/how-to-locate-customers-with-coupons-applied.md): Keep track of customers who've applied your coupons during checkout. - [Remove an Offer from a Coupon](https://help.kajabi.com/articles/sales/coupons/how-to-remove-an-offer-from-your-coupon.md): Remove the coupon field from your Offer Checkout Page by disconnecting your Offer from your Coupon. - [Use Single-Use Coupon Automations](https://help.kajabi.com/articles/sales/coupons/how-to-use-single-use-coupon-automations.md): Send unique single-use coupon codes automatically when specific triggers occur. - [Compare single and bulk coupon codes](https://help.kajabi.com/articles/sales/coupons/what-is-the-difference-between-single-coupon-codes-and-bulk-coupon-codes.md): Understand the difference between single-use and bulk coupon codes in Kajabi. - [Troubleshoot coupon errors](https://help.kajabi.com/articles/sales/coupons/why-is-my-coupon-not-working.md): Troubleshoot common coupon errors when customers try to use coupons at checkout. - [ACH Direct Debit for invoicing](https://help.kajabi.com/articles/sales/kajabi-payments/ach-direct-debit-for-invoicing.md): Accept bank account payments on Invoices through ACH Direct Debit with Kajabi Payments. - [Buy Now, Pay Later methods with Kajabi Payments](https://help.kajabi.com/articles/sales/kajabi-payments/buy-now-pay-later-methods-with-kajabi-payments.md): Explore Buy Now, Pay Later payment options available through Kajabi Payments. - [Disputes page overview](https://help.kajabi.com/articles/sales/kajabi-payments/disputes-page-overview.md): View, manage, and export disputed transactions with Kajabi Payments. - [Set up Kajabi Payments: Australia](https://help.kajabi.com/articles/sales/kajabi-payments/getting-started-with-kajabi-payments-australia.md): Set up Kajabi Payments for a business registered in Australia. - [Set up Kajabi Payments: Canada](https://help.kajabi.com/articles/sales/kajabi-payments/getting-started-with-kajabi-payments-canada.md): Set up Kajabi Payments for a business registered in Canada. - [Set up Kajabi Payments: Europe](https://help.kajabi.com/articles/sales/kajabi-payments/getting-started-with-kajabi-payments-europe.md): Set up Kajabi Payments for a business registered in a supported European country. - [Set up Kajabi Payments: United Arab Emirates](https://help.kajabi.com/articles/sales/kajabi-payments/getting-started-with-kajabi-payments-united-arab-emirates.md): Set up Kajabi Payments for a business registered in the United Arab Emirates. - [Set up Kajabi Payments: United Kingdom](https://help.kajabi.com/articles/sales/kajabi-payments/getting-started-with-kajabi-payments-united-kingdom.md): Set up Kajabi Payments for a business registered in the United Kingdom. - [Set up Kajabi Payments: United States](https://help.kajabi.com/articles/sales/kajabi-payments/getting-started-with-kajabi-payments-united-states.md): Set up Kajabi Payments for a business registered in the United States. - [Bank updates and payout schedule timing](https://help.kajabi.com/articles/sales/kajabi-payments/how-do-bank-updates-or-payout-schedule-changes-affect-my-kajabi-payout-timing.md): Understand how updating a bank account or modifying a payout schedule can temporarily influence Kajabi payout timing. - [Use Klarna with Kajabi Payments](https://help.kajabi.com/articles/sales/kajabi-payments/how-klarna-works-with-kajabi-payments.md): Give your customers more flexibility at checkout with Klarna, a Buy Now, Pay Later payment option that can increase affordability and help boost conversions. - [Convert offers from Stripe to Kajabi Payments](https://help.kajabi.com/articles/sales/kajabi-payments/how-to-convert-your-offers-from-stripe-to-kajabi-payments.md): Accept Kajabi Payments on all offers with a single click. - [Enable Afterpay on Kajabi Payments offers](https://help.kajabi.com/articles/sales/kajabi-payments/how-to-enable-afterpay-on-kajabi-payments-offers.md): Enable Afterpay on offers to give customers flexible payment options and lower the barrier to purchase. - [Enable Apple Pay and Google Pay on Kajabi Payments offers](https://help.kajabi.com/articles/sales/kajabi-payments/how-to-enable-apple-pay-and-google-pay-on-kajabi-payments-offers.md): Enable digital wallets like Apple Pay and Google Pay as additional payment methods at checkout with Kajabi Payments. - [Integrate QuickBooks Online with Kajabi Payments](https://help.kajabi.com/articles/sales/kajabi-payments/how-to-integrate-quickbooks-online-with-kajabi-payments.md): Connect Kajabi Payments with QuickBooks Online using QuickBooks Sync by Acodei to track your business income and expenses. - [Integrate Xero with Kajabi Payments](https://help.kajabi.com/articles/sales/kajabi-payments/how-to-integrate-xero-with-kajabi-payments.md): Connect Xero accounting software with Kajabi Payments to automatically import and reconcile transaction data. - [Manage failed payments with Kajabi Payments](https://help.kajabi.com/articles/sales/kajabi-payments/how-to-manage-failed-payments-with-kajabi-payments.md): Handle failed recurring payments, view and export failed payment data, and manage automatic retries with Kajabi Payments. - [Respond to a dispute with Kajabi Payments](https://help.kajabi.com/articles/sales/kajabi-payments/how-to-respond-to-a-dispute-with-kajabi-payments.md): Identify, respond to, and counter disputes filed through Kajabi Payments. - [Set up and manage subscriptions with Kajabi Payments](https://help.kajabi.com/articles/sales/kajabi-payments/how-to-set-up-and-manage-subscriptions-and-payment-plans-with-kajabi-payments.md): Create, manage, and cancel subscriptions and payment plans using Kajabi Payments. - [Update billing dates for Kajabi Payments subscriptions](https://help.kajabi.com/articles/sales/kajabi-payments/how-to-update-the-billing-date-for-kajabi-payments-subscriptions-and-payment-plans.md): Adjust billing dates for subscriptions and payment plans to align with customer schedules. - [Verify an EIN for Kajabi Payments](https://help.kajabi.com/articles/sales/kajabi-payments/how-to-verify-your-employer-identification-number-ein-for-kajabi-payments.md): Upload tax documentation and match business information to verify an Employer Identification Number (EIN) for Kajabi Payments. - [View Kajabi Payments payouts and payout details](https://help.kajabi.com/articles/sales/kajabi-payments/how-to-view-kajabi-payments-payouts-and-payout-details.md): View and track payouts, export payout details, and manage payout schedules with Kajabi Payments. - [Create and manage invoices with Kajabi Payments](https://help.kajabi.com/articles/sales/kajabi-payments/invoicing-with-kajabi-payments.md): Create, send, and manage invoices directly within Kajabi using Kajabi Payments. - [Kajabi Capital: fast, frictionless business funding](https://help.kajabi.com/articles/sales/kajabi-payments/kajabi-capital-fast-frictionless-funding-for-your-business.md): Access fast business funding through Kajabi Capital based on sales performance. - [Kajabi Payments fees: Australia](https://help.kajabi.com/articles/sales/kajabi-payments/kajabi-payment-fees-australia.md): Review the processing fees for Kajabi Payments for businesses registered in Australia. - [Kajabi Payments fees: United Kingdom](https://help.kajabi.com/articles/sales/kajabi-payments/kajabi-payment-fees-united-kingdom.md): Review the processing fees for Kajabi Payments for businesses registered in the United Kingdom. - [Kajabi Payments 1099-K tax forms](https://help.kajabi.com/articles/sales/kajabi-payments/kajabi-payments-1099-k-tax-forms.md): Understand 1099-K eligibility, access forms, and review reported payment activity for Kajabi Payments. - [Complete Kajabi Payments verification requirements](https://help.kajabi.com/articles/sales/kajabi-payments/kajabi-payments-additional-verification-requirements.md): Verify Kajabi Payments information and complete the verification process. - [Kajabi Payments fees: Canada](https://help.kajabi.com/articles/sales/kajabi-payments/kajabi-payments-fees-canada.md): Review the processing fees for Kajabi Payments for businesses registered in Canada. - [Kajabi Payments fees: Europe](https://help.kajabi.com/articles/sales/kajabi-payments/kajabi-payments-fees-europe.md): Review the processing fees for Kajabi Payments for businesses registered in select European countries. - [Kajabi Payments fees: United Arab Emirates](https://help.kajabi.com/articles/sales/kajabi-payments/kajabi-payments-fees-united-arab-emirates.md): Review the processing fees for Kajabi Payments for businesses registered in the United Arab Emirates. - [Kajabi Payments fees: United States](https://help.kajabi.com/articles/sales/kajabi-payments/kajabi-payments-fees-united-states.md): A breakdown of Kajabi Payments fees for businesses registered in the United States. - [Kajabi Payments onboarding required documentation by region](https://help.kajabi.com/articles/sales/kajabi-payments/kajabi-payments-onboarding-required-documentation-by-region.md): Review the documents Kajabi Payments accepts as proof of identity, address, and entity for each supported country. - [Kajabi Payments overview](https://help.kajabi.com/articles/sales/kajabi-payments/kajabi-payments-overview.md): An all-in-one solution to accept customer payments, oversee purchases, manage refunds, initiate payouts, and more. - [Kajabi Payments payouts](https://help.kajabi.com/articles/sales/kajabi-payments/kajabi-payments-payouts.md): Receive payouts, set a payout schedule, and troubleshoot payout issues with Kajabi Payments. - [Kajabi Payments processing fees](https://help.kajabi.com/articles/sales/kajabi-payments/kajabi-payments-processing-fees.md): Understand the processing fees associated with Kajabi Payments for each supported region. - [Kajabi Payments sales tax overview](https://help.kajabi.com/articles/sales/kajabi-payments/kajabi-payments-sales-tax-overview.md): Automatically calculate and collect sales tax on products and services with Kajabi Sales Tax. - [Kajabi Payments statement descriptor](https://help.kajabi.com/articles/sales/kajabi-payments/kajabi-payments-statement-descriptor.md): View and update the Kajabi Payments statement descriptor to help customers recognize charges. - [Migrate Stripe subscriptions & payment plans to Kajabi Payments](https://help.kajabi.com/articles/sales/kajabi-payments/migrate-stripe-subscriptions-payment-plans-to-kajabi-payments.md): Seamlessly migrate active subscriptions and payment plans from Stripe to Kajabi Payments without customer disruption. - [Payment plans](https://help.kajabi.com/articles/sales/kajabi-payments/payment-plans.md): View and export detailed payment plan information. - [Payment settings](https://help.kajabi.com/articles/sales/kajabi-payments/payment-settings.md): Update Payment Settings to collect payments from customers, connect and manage Kajabi Payments setup, and customize checkout settings. - [Subscriptions](https://help.kajabi.com/articles/sales/kajabi-payments/subscriptions.md): View and export detailed subscription information for customers. - [Transactions](https://help.kajabi.com/articles/sales/kajabi-payments/transactions.md): View and export detailed payment information about purchases made on a site. - [Understanding Stripe's restricted business list for Kajabi Heroes](https://help.kajabi.com/articles/sales/kajabi-payments/understanding-stripes-restricted-business-list-for-kajabi-heroes.md): Review Stripe's Prohibited and Restricted Business List and what it means for Kajabi Heroes. - [Understanding Stripe's updated billing plans for Kajabi Heroes](https://help.kajabi.com/articles/sales/kajabi-payments/understanding-stripes-updated-billing-plans-for-kajabi-heroes.md): Review Stripe's billing plan changes and how they affect Kajabi Payments fees. - [Payment disputes](https://help.kajabi.com/articles/sales/kajabi-payments/what-is-a-payment-dispute.md): Understand payment disputes and how to prevent and address them. - [Kajabi Payments overview and FAQs](https://help.kajabi.com/articles/sales/kajabi-payments/why-kajabi-payments-everything-you-need-to-know.md): Understand the benefits of Kajabi Payments and find answers to frequently asked questions. - [Revoke Offer access when payment fails or cancels](https://help.kajabi.com/articles/sales/offers/automatically-revoke-access-to-an-offer-if-payment-fails-or-cancels.md): Use Automations to revoke access to the Products in an Offer when a payment fails or cancels. - [Can the price of an Offer be changed without affecting existing customers?](https://help.kajabi.com/articles/sales/offers/can-i-change-the-price-of-an-offer-without-changing-the-access-to-those-who-already-purchased-the-product.md): Pricing changes to an existing Offer apply only to future customers and do not affect current subscribers. - [Can bundles of digital Products be sold?](https://help.kajabi.com/articles/sales/offers/can-i-sell-bundles-of-digital-products-ie-digital-trainings.md): Attach multiple Products to a single Offer to sell them as a bundle. - [Checkout quantity selector](https://help.kajabi.com/articles/sales/offers/checkout-quantity-selector.md): Enable the checkout quantity selector to allow for multiple purchases of the same Offer within one checkout. - [Configuring Upcoming Payment Reminder Emails ](https://help.kajabi.com/articles/sales/offers/configuring-upcoming-payment-reminder-emails.md) - [Create a payment plan Offer](https://help.kajabi.com/articles/sales/offers/create-a-payment-plan-offer.md): Set up a payment plan so customers can pay a specified fee over time to access content. - [Create an Offer](https://help.kajabi.com/articles/sales/offers/create-an-offer.md): Build, customize, and share an Offer to begin selling Products on Kajabi. - [Create multiple pricing options for Legacy Checkout](https://help.kajabi.com/articles/sales/offers/create-multiple-pricing-options-for-legacy-checkout.md): Set up multiple pricing options by duplicating Offers using Kajabi's Legacy Checkout. - [Create a test purchase in Kajabi](https://help.kajabi.com/articles/sales/offers/creating-a-test-purchase-in-kajabi.md): Verify that Offers, checkout, and post-purchase flows work correctly before going live. - [Failed payment reasons](https://help.kajabi.com/articles/sales/offers/failed-payment-reasons.md): Common payment failure reasons and how to resolve them. - [How do existing customers purchase additional Offers?](https://help.kajabi.com/articles/sales/offers/how-do-existing-customers-purchase-additional-offers.md): Existing customers can purchase additional Offers and add them to their existing account. - [Add an expiration date to an Offer](https://help.kajabi.com/articles/sales/offers/how-to-add-an-expiration-date-to-your-offer.md): Control how long an Offer is available to be purchased by adding an expiration date. - [Add Offers to a Store](https://help.kajabi.com/articles/sales/offers/how-to-add-offers-to-your-store.md): Add Offers to a store page to showcase available Products for purchase. - [Build membership levels](https://help.kajabi.com/articles/sales/offers/how-to-build-membership-levels.md): Create membership tiers where customers are granted additional content based on their subscription level. - [Connect additional Products to an Offer](https://help.kajabi.com/articles/sales/offers/how-to-connect-additional-products-to-your-offer.md): Add multiple Products to an Offer to create bundles. - [Create a free Offer](https://help.kajabi.com/articles/sales/offers/how-to-create-a-free-offer.md): Provide free resources, content, and services to customers with a free Offer. - [Create a Ghost Offer](https://help.kajabi.com/articles/sales/offers/how-to-create-a-ghost-offer.md): Sell resources and services not connected to a digital product on Kajabi by creating Ghost Offers. - [Create a one-time payment Offer](https://help.kajabi.com/articles/sales/offers/how-to-create-a-one-time-payment-offer.md): Set up a one-time payment plan so customers can purchase an Offer with a single payment. - [Create a pricing plan for an Offer](https://help.kajabi.com/articles/sales/offers/how-to-create-a-pricing-plan-for-your-offer.md): Select and customize the pricing plan for an Offer to control how customers pay for Products. - [Create a subscription Offer](https://help.kajabi.com/articles/sales/offers/how-to-create-a-subscription-offer.md): Set up a subscription Offer to collect payment on a recurring basis for content. - [Create a waitlist for an Offer](https://help.kajabi.com/articles/sales/offers/how-to-create-a-waitlist-for-your-offer.md): Set up a waitlist for an Offer when restricting access based on time or number of customers. - [Create and manage Gift Offers](https://help.kajabi.com/articles/sales/offers/how-to-create-and-manage-gift-offers.md): Enable Gift Offers for purchase with Kajabi so customers can gift products to others. - [Customize checkout fields](https://help.kajabi.com/articles/sales/offers/how-to-customize-your-checkout-fields.md): Customize the checkout form to collect important information from customers such as name, address, phone number, tax ID, or a password. - [Customize setup fee text](https://help.kajabi.com/articles/sales/offers/how-to-customize-your-setup-fee-text.md): Customize the language and text displayed for a setup fee on an Offer. - [Delete an Offer](https://help.kajabi.com/articles/sales/offers/how-to-delete-an-offer.md): Remove or delete an Offer when it is no longer needed. - [Duplicate an Offer](https://help.kajabi.com/articles/sales/offers/how-to-duplicate-an-offer.md): Duplicate Offers to provide multiple purchasing options and build unique sales pages - [Export purchase reports for individual Offers](https://help.kajabi.com/articles/sales/offers/how-to-export-purchase-reports-for-individual-offers.md): View and export detailed payment information about every purchase made for individual Offers. - [Give access to a Product on a specific date](https://help.kajabi.com/articles/sales/offers/how-to-give-access-to-your-product-on-a-specific-date.md): Configure an Offer to give access to Products on a specific date for launches and preselling. - [Grant access to a Product for a company with multiple logins](https://help.kajabi.com/articles/sales/offers/how-to-grant-access-to-a-product-for-a-company-with-multiple-logins.md): Create and grant access to Offers for multiple users that belong to the same company. - [Grant an Offer](https://help.kajabi.com/articles/sales/offers/how-to-grant-an-offer.md): Grant an Offer to give free access to a course as a lead magnet, preview, or additional access. - [Manage Offer Notifications](https://help.kajabi.com/articles/sales/offers/how-to-include-additional-settings-for-your-offer.md): Configure notification settings for an Offer, including third-party email integrations, purchase alerts, and cart abandonment emails. - [Prevent multiple free trial subscriptions](https://help.kajabi.com/articles/sales/offers/how-to-keep-people-from-trialing-more-than-once.md): Stop people from subscribing to free trial Offers more than once using Offer Automations. - [Make Offers available in multiple currencies](https://help.kajabi.com/articles/sales/offers/how-to-make-offers-available-in-multiple-currencies.md): Set up multiple Offers with different currencies to allow customers to purchase with their local currency. - [Price a digital product or bundle](https://help.kajabi.com/articles/sales/offers/how-to-price-your-digital-product-or-bundle-a-step-by-step-guide.md): Effectively price digital products using benchmarks based on 15 years in the creator economy. - [Publish or unpublish an Offer](https://help.kajabi.com/articles/sales/offers/how-to-publish-or-unpublish-an-offer.md): Switch an Offer between Published and Draft status to control its availability. - [Restrict Product access to a specific number of days](https://help.kajabi.com/articles/sales/offers/how-to-restrict-product-access-to-a-specific-amount-of-days.md): Automatically revoke access to the Products in an Offer after a specified number of days. - [Sell an ebook](https://help.kajabi.com/articles/sales/offers/how-to-sell-an-ebook.md): Sell and automatically deliver an ebook in Kajabi by creating a Ghost Offer and an Automation. - [Send a PDF to a customer after a purchase](https://help.kajabi.com/articles/sales/offers/how-to-send-a-pdf-to-a-customer-after-a-purchase.md): Deliver a PDF file to customers after they make a purchase, either through email or a landing page. - [Send customers to a landing page after checkout](https://help.kajabi.com/articles/sales/offers/how-to-send-customers-to-a-landing-page-after-checkout.md): Redirect customers to a custom landing page after they purchase an Offer. - [Send receipts with Kajabi](https://help.kajabi.com/articles/sales/offers/how-to-send-receipts-with-kajabi.md): Send email receipts to customers who purchase Offers using Kajabi Receipts. - [Set an Offer quantity limit](https://help.kajabi.com/articles/sales/offers/how-to-set-an-offer-quantity-limit.md): Create limited quantity Offers on Kajabi to drive urgency and scarcity. - [Set up a paid trial in Kajabi](https://help.kajabi.com/articles/sales/offers/how-to-set-up-a-paid-trial-in-kajabi.md): Offer a paid trial within a Subscription Offer by using a Setup Fee. - [Set up monthly enrolling memberships](https://help.kajabi.com/articles/sales/offers/how-to-set-up-monthly-enrolling-memberships.md): Offer content to customers on a monthly rolling basis where access depends on when they joined. - [Set the default currency](https://help.kajabi.com/articles/sales/offers/how-to-set-your-default-currency.md): Update site settings to change the default currency used for formatting and calculations. - [Turn on a payment provider for Offers](https://help.kajabi.com/articles/sales/offers/how-to-turn-on-a-payment-provider-for-your-offers.md): Enable a preferred payment provider for Offers to start accepting payments. - [Use custom price text override](https://help.kajabi.com/articles/sales/offers/how-to-use-custom-price-text-override.md): Personalize the text displayed for the price during checkout to bring your brand's voice into the purchasing experience. - [View Offer stats](https://help.kajabi.com/articles/sales/offers/how-to-view-offer-stats.md): Navigate to Offer stats pages to find purchases, revenue, and recent activity. - [Will deleting an Offer decrease the total revenue earned?](https://help.kajabi.com/articles/sales/offers/if-i-delete-an-offer-will-it-decrease-my-total-revenue-earned-amount.md): Deleting a previously purchased Offer does not affect total revenue stats. - [Offer a syllabus](https://help.kajabi.com/articles/sales/offers/offer-a-syllabus.md): Showcase course content with a Syllabus so potential customers can view what's included before purchasing. - [Offer creation flow](https://help.kajabi.com/articles/sales/offers/offer-creation-flow.md): Use the streamlined Offer creation flow to quickly set up and price Offers. - [Offers overview](https://help.kajabi.com/articles/sales/offers/offers-overview.md): Offers serve as the price tag and payment vehicle for your Products on Kajabi. - [Pay What You Want Offers](https://help.kajabi.com/articles/sales/offers/pay-what-you-want-offers.md): Set up Pay What You Want pricing to let customers choose their own price. - [Payments page overview](https://help.kajabi.com/articles/sales/offers/the-payments-page-overview.md): View detailed payment information about every purchase made on your site. - [Upsells overview](https://help.kajabi.com/articles/sales/offers/upsells-overview.md): Create reusable Upsell pages, attach them to multiple Offers, and track performance with built-in analytics. - [New Customer Purchase Experience](https://help.kajabi.com/articles/sales/offers/what-happens-when-a-customer-purchases-my-offer.md): Understand the complete customer experience when purchasing an Offer, from checkout to accessing their products. - [What happens when a customer subscription is canceled](https://help.kajabi.com/articles/sales/offers/what-happens-when-a-customer-subscription-is-canceled.md): Understand how canceled subscriptions affect customer access to Products across different payment processors. - [What happens when a customer subscription payment fails](https://help.kajabi.com/articles/sales/offers/what-happens-when-a-customer-subscription-payment-fails.md): Understand how payment failures are handled across different payment processors and what happens to Product access. - [Difference between purchasing a free Offer and granting an Offer](https://help.kajabi.com/articles/sales/offers/what-is-the-difference-between-purchasing-a-free-offer-and-granting-an-offer.md): Understand the key differences between granting an Offer and selling a free Offer to customers. - [Will existing customers be affected by an Offer price change?](https://help.kajabi.com/articles/sales/offers/will-my-existing-customers-be-affected-if-i-update-the-price-of-their-offer.md): Existing customers with active subscriptions or payment plans are not affected by Offer pricing updates. - [Blog overview](https://help.kajabi.com/articles/website/blog/blog-overview.md): Set up your Blog by configuring settings and creating your first Blog Post. - [Customize the blog sidebar](https://help.kajabi.com/articles/website/blog/customizing-your-blog-sidebar.md): Build the blog sidebar to help visitors navigate seamlessly with links, opt-ins, buttons, a search bar, and more. - [Embed a podcast](https://help.kajabi.com/articles/website/blog/embed-a-podcast.md): Add an externally hosted podcast player to a Kajabi page, blog post, or Course Lesson using embed code. - [Add a search bar to a blog](https://help.kajabi.com/articles/website/blog/how-to-add-a-blog-post-search-bar-in-your-blog.md): Enable visitors to find specific blog content by adding a search bar to the blog sidebar. - [Add a call to action to a blog post](https://help.kajabi.com/articles/website/blog/how-to-add-a-call-to-action-to-an-individual-blog-post.md): Encourage blog visitors to take action using an image or link as a call to action. - [Add a Disqus comments section to blog posts](https://help.kajabi.com/articles/website/blog/how-to-add-a-comments-section-to-your-blog-posts.md): Integrate Disqus with your Kajabi blog to enable discussions and moderate comments. - [Add a Facebook Like button to blog posts](https://help.kajabi.com/articles/website/blog/how-to-add-a-facebook-like-button-to-your-blog-posts.md): Connect blog visitors to your social media by adding a Facebook Like button. - [Add a two-step opt-in to a blog](https://help.kajabi.com/articles/website/blog/how-to-add-a-two-step-optin-to-your-blog.md): Improve opt-in rates by adding a customizable two-step opt-in popup to your blog. - [Add an opt-in form to blog posts](https://help.kajabi.com/articles/website/blog/how-to-add-an-opt-in-form-to-your-blog-posts.md): Grow your email list by adding an opt-in block to the bottom of each blog post. - [Add Facebook comments with the legacy template](https://help.kajabi.com/articles/website/blog/how-to-add-facebook-comments-to-your-blog-posts-with-the-legacy-template.md): Enable Facebook comments on blog posts built with the Premier legacy template. - [Add media to blog posts](https://help.kajabi.com/articles/website/blog/how-to-add-media-to-your-blog-posts.md): Enhance blog post content by adding video or audio to the top of each post. - [Categorize blog posts](https://help.kajabi.com/articles/website/blog/how-to-categorize-your-blog-posts.md): Organize blog posts by assigning tags that display as categories for easy navigation. - [Configure SEO and sharing settings for a blog](https://help.kajabi.com/articles/website/blog/how-to-configure-seo-and-sharing-settings-for-your-blog.md): Optimize search engine visibility and social sharing by configuring SEO settings for your blog and individual posts. - [Create a blog post](https://help.kajabi.com/articles/website/blog/how-to-create-a-blog-post.md): Create, edit, schedule, and organize blog posts from the Blog tab. - [Delete a blog post](https://help.kajabi.com/articles/website/blog/how-to-delete-a-blog-post.md): Permanently remove a blog post from your site. This action cannot be undone. - [Embed a video in a blog post](https://help.kajabi.com/articles/website/blog/how-to-embed-a-video-to-a-blog-post.md): Add video content from external sources like YouTube into blog posts using embed code. - [Remove tags from blog posts](https://help.kajabi.com/articles/website/blog/how-to-remove-tags-from-blog-posts.md): Reorganize blog categories by removing tags from specific posts. - [Upload a file to blog posts](https://help.kajabi.com/articles/website/blog/how-to-upload-a-file-to-your-blog-posts.md): Deliver supplemental resources like PDFs and images to blog visitors through downloadable files. - [The 4 foundational habits of all successful bloggers](https://help.kajabi.com/articles/website/blog/the-4-foundational-habits-of-all-successful-bloggers.md): Discover the four key habits that drive a sustainable, profitable blogging practice. - [Connect a custom domain on a Basic plan](https://help.kajabi.com/articles/website/domains/can-you-connect-a-custom-domain-to-the-site-on-a-basic-plan.md): Custom domains are available on all paid Kajabi plans including Basic, Growth, and Pro. - [Code-based customizations](https://help.kajabi.com/articles/website/domains/code-based-customizations.md): Understand code-based customizations and best practices for adding custom code to a Kajabi site. - [Connect a custom domain](https://help.kajabi.com/articles/website/domains/connect-a-custom-domain.md): Connect a custom domain to a Kajabi site by updating nameservers, configuring DNS settings, and setting up a custom email domain. - [Disconnect a custom domain](https://help.kajabi.com/articles/website/domains/disconnect-your-custom-domain.md): Remove a connected custom domain from a Kajabi site. - [Gmail & Yahoo email requirement updates](https://help.kajabi.com/articles/website/domains/gmail-yahoo-email-requirement-updates.md): Understand Gmail and Yahoo email authentication requirements and the actions needed for custom email domains. - [Connect a custom domain using nameservers](https://help.kajabi.com/articles/website/domains/how-can-i-connect-my-custom-domain-to-kajabi-using-nameservers.md): Update domain nameservers to point a custom domain to Kajabi. - [Create a subdomain for a Kajabi site](https://help.kajabi.com/articles/website/domains/how-to-create-a-subdomain-for-a-kajabi-site.md): Set up a subdomain that points to a Kajabi site by creating a CNAME record in a domain registrar. - [Manage DNS records on Kajabi](https://help.kajabi.com/articles/website/domains/how-to-manage-your-dns-records-on-kajabi.md): View and add custom DNS records for a connected custom domain on Kajabi. - [Purchase a domain name](https://help.kajabi.com/articles/website/domains/how-to-purchase-a-domain-name.md): Choose a domain registrar and purchase a custom domain name for a Kajabi site. - [Set up a forwarding rule on Bluehost](https://help.kajabi.com/articles/website/domains/how-to-set-up-a-forwarding-rule-for-your-custom-domain-on-bluehost.md): Configure a URL forwarding rule on Bluehost to redirect traffic to a Kajabi site. - [Set up a forwarding rule on GoDaddy](https://help.kajabi.com/articles/website/domains/how-to-set-up-a-forwarding-rule-for-your-custom-domain-on-godaddy.md): Configure a URL forwarding rule on GoDaddy to redirect traffic to your Kajabi site. - [Test a domain connection to prevent webmail disruption](https://help.kajabi.com/articles/website/domains/how-to-test-your-domain-connection-to-prevent-a-webmail-disruption.md): Verify that DNS records for your webmail service imported correctly after connecting a custom domain to Kajabi. - [Troubleshoot redirect issues on Kajabi landing pages](https://help.kajabi.com/articles/website/domains/how-to-troubleshoot-and-resolve-redirect-issues-on-kajabi-landing-pages.md): Identify and fix common redirect issues caused by countdown blocks, button misconfigurations, or custom code. - [Troubleshoot a site not secure message](https://help.kajabi.com/articles/website/domains/how-to-troubleshoot-site-not-secure-message.md): Identify and resolve the 'Site Not Secure' error message on your Kajabi site. - [Verify a custom domain for Google Workspace](https://help.kajabi.com/articles/website/domains/how-to-verify-your-custom-domain-on-kajabi-for-google-workspace.md): Complete domain verification on Kajabi to set up Google Workspace for custom business emails, calendars, and collaboration. - [Kajabi default subdomain vs custom domain](https://help.kajabi.com/articles/website/domains/kajabi-default-subdomain-vs-custom-domain.md): Understand the difference between a default Kajabi subdomain and a custom domain, and configure each option. - [Lightning Loader](https://help.kajabi.com/articles/website/domains/lightning-loader.md): Lightning Loader caching technology improves site performance and load times automatically. - [Troubleshoot custom domain issues](https://help.kajabi.com/articles/website/domains/troubleshooting-custom-domain-issues.md): Resolve common custom domain issues including disconnecting, reconnecting, and fixing DNS problems. - [Verify a domain with Facebook](https://help.kajabi.com/articles/website/domains/verifying-your-domain-with-facebook.md): Complete Facebook domain verification to enable Facebook tools on your Kajabi site. - [Change a domain after a site is live](https://help.kajabi.com/articles/website/domains/what-happens-if-i-change-my-domain-after-my-website-has-been-live.md): Understand the effects of changing your domain or subdomain after your Kajabi site is already live. - [Build navigation menus](https://help.kajabi.com/articles/website/navigation/build-navigation-menus.md): Create custom navigation menus, add links, and edit menu items for Kajabi pages. - [Assign a navigation menu](https://help.kajabi.com/articles/website/navigation/how-to-assign-your-navigation-menu.md): Apply navigation menus to website pages, checkout pages, and course pages. - [Navigation tab overview](https://help.kajabi.com/articles/website/navigation/navigation-tab-overview.md): Configure website navigation menus, add links, and create custom menus for different pages. - [Add a Basic Content section to a page](https://help.kajabi.com/articles/website/pages/add-a-basic-content-section-to-your-page.md): Learn how to add Text Block, Call to Action, and Form sections. - [Add a Call to Action to a header](https://help.kajabi.com/articles/website/pages/add-a-call-to-action-to-your-header.md): Encourage your page visitors to open a separate page, purchase an Offer, and more with a Call to Action. - [Add a Dropdown Menu to a header](https://help.kajabi.com/articles/website/pages/add-a-dropdown-menu-to-your-header.md): Lead page visitors with links to Landing Pages, Offers, and more within a streamlined, dropdown format. - [Add an Exit Popup to a page](https://help.kajabi.com/articles/website/pages/add-an-exit-popup-to-a-page.md): Encourage visitors to take action before leaving a page. - [Add an Offer to a page](https://help.kajabi.com/articles/website/pages/add-an-offer-to-a-page.md): Learn how to add Offer Blocks to your pages to display your products for purchase. - [Add Blocks to a page](https://help.kajabi.com/articles/website/pages/add-blocks-to-your-page.md): Learn how Blocks are used to build content onto your pages. - [Add custom code to pages](https://help.kajabi.com/articles/website/pages/add-custom-code-to-pages.md): Learn how to add custom code to a single page or all pages on your website. - [Add custom fonts](https://help.kajabi.com/articles/website/pages/add-custom-fonts.md): Add custom fonts to customize your pages with Kajabi's Page Builder. - [Add Sections to pages](https://help.kajabi.com/articles/website/pages/add-sections-to-your-pages.md): Learn how a Section can be used to build a beautifully designed Page. - [Add an Instagram Feed to a page](https://help.kajabi.com/articles/website/pages/add-your-instagram-feed-to-your-page.md): Display your Instagram feed on your Kajabi page to create a personal feel to your brand. - [Am I able to change my website design and course anytime or does it stay that way once I publish it?](https://help.kajabi.com/articles/website/pages/am-i-able-to-change-my-website-design-and-course-anytime-or-does-it-stay-that-way-once-i-publish-it.md): Learn about updating your website and course designs after publishing. - [Are Kajabi Pages mobile-friendly?](https://help.kajabi.com/articles/website/pages/are-kajabi-pages-mobile-friendly.md): Learn about Kajabi's mobile compatibility for website and landing pages. - [Block AI & search engine bots from scraping a Kajabi site](https://help.kajabi.com/articles/website/pages/block-ai-search-engine-bots-from-scraping-your-kajabi-site.md): Learn how to prevent AI bots and search engines from indexing or scraping your Kajabi site content. - [Build a website with Kajabi](https://help.kajabi.com/articles/website/pages/build-a-website-with-kajabi.md): Create and design your website with streamlined templates and highly-customizable page editing features. - [Build a page with design tools](https://help.kajabi.com/articles/website/pages/build-your-page-with-design-tools.md): Learn to use the Design Tools to design your pages within the 12-column system available with the Website Builder and Kajabi Pages. - [Can I brand and design my website with Kajabi?](https://help.kajabi.com/articles/website/pages/can-i-brand-and-design-my-website-with-kajabi.md): Design your website to best fit your brand and business with Kajabi's flexible customization tools. - [Can I create an adaptable and customizable homepage?](https://help.kajabi.com/articles/website/pages/can-i-create-an-adaptable-and-customizable-homepage.md): Kajabi gives you all the tools you need to easily build out your Home Page. - [Can I create links to different sections of a page?](https://help.kajabi.com/articles/website/pages/can-i-create-links-to-different-sections-of-a-page.md): Link to sections of your page by using a Call to Action for easy navigation. - [Can I go back to the default favicon provided by Kajabi?](https://help.kajabi.com/articles/website/pages/can-i-go-back-to-the-default-favicon-provided-by-kajabi.md): Learn about reverting to the default Kajabi favicon after deletion. - [Can I keep my third-party website active while using Kajabi?](https://help.kajabi.com/articles/website/pages/can-i-keep-my-third-party-website-active-while-using-kajabi.md): Connect your existing website to your Kajabi Pages with a link while keeping your third-party site active. - [Can I make my links open in a new tab?](https://help.kajabi.com/articles/website/pages/can-i-make-my-links-open-in-a-new-tab.md): Edit your links to open in a new tab or window in your visitors' web browsers. - [Can I transfer my existing website design and formatting from another platform to Kajabi?](https://help.kajabi.com/articles/website/pages/can-i-transfer-my-existing-website-design-and-formatting-from-another-platform-to-kajabi.md): Learn how to migrate your website content from a third-party platform to Kajabi. - [Can I use a different two step opt-in popup for two different site pages?](https://help.kajabi.com/articles/website/pages/can-i-use-a-different-two-step-opt-in-popup-for-two-different-site-pages.md): Learn about the limitations of using different Two Step Opt-in Popups on Kajabi site pages. - [Change the language on Kajabi](https://help.kajabi.com/articles/website/pages/can-you-change-your-language-on-kajabi.md): Customize the language used on your site with Kajabi's language settings. - [Change the homepage](https://help.kajabi.com/articles/website/pages/change-your-homepage.md): Learn to change the page displayed when visitors view the root of your site. - [Cookies and cookie disclaimers](https://help.kajabi.com/articles/website/pages/cookies-and-cookie-disclaimers.md): Learn about the cookies Kajabi uses on your site and how to add a cookie disclaimer. - [Create a lead generation landing page](https://help.kajabi.com/articles/website/pages/create-a-lead-generation-landing-page.md): Quickly begin building an email list of prospective customers for your business. - [Create a Privacy Policy & Terms page](https://help.kajabi.com/articles/website/pages/creating-your-privacy-policy-terms-page.md): Learn to create and share your Privacy Policy & Terms Page for your business. - [Create a website](https://help.kajabi.com/articles/website/pages/creating-your-website.md): Learn to create your website with the Website Builder. - [Customize page details](https://help.kajabi.com/articles/website/pages/customize-your-page-details.md): Learn to modify your Page title, URL slug, visibility, and SEO settings. - [Customize page font and style with the Style Guide](https://help.kajabi.com/articles/website/pages/customize-your-page-font-and-style-with-the-style-guide.md): Learn to customize your default colors, fonts, and the general appearance of your page with the Style Guide setting. - [Customize block animations](https://help.kajabi.com/articles/website/pages/customizing-block-animations.md): Learn to add animations to your blocks to create a visual effect when a visitor opens your page. - [Customize block background settings](https://help.kajabi.com/articles/website/pages/customizing-block-background-settings.md): Learn to change the background color, add and adjust a border, and add depth to your block. - [Customize block layout settings](https://help.kajabi.com/articles/website/pages/customizing-block-layout-settings.md): Learn to adjust your block content visibility, alignment, spacing, and positioning of individual blocks to optimize your users' experience on different devices. - [Customize section layout settings](https://help.kajabi.com/articles/website/pages/customizing-section-layout-settings.md): Learn to customize your section layout settings to optimize your users' experience when viewing your section on desktop and mobile devices. - [Customize time reveal settings](https://help.kajabi.com/articles/website/pages/customizing-time-reveal-settings.md): Learn to offset visibility for individual blocks and entire sections of a page after a specified amount of time with the Time Reveal Settings. - [Customize the footer](https://help.kajabi.com/articles/website/pages/customizing-your-footer.md): Learn to enable and customize the footer of your page. - [Customize the header](https://help.kajabi.com/articles/website/pages/customizing-your-header.md): The header is a critical element of your website that runs across the top of every web page, typically containing your logo and site navigation. - [Customize the hero image overlay in Premier](https://help.kajabi.com/articles/website/pages/customizing-your-hero-image-overlay-in-premier.md): Learn how hero images work as background accents and how to customize the image overlay in Premier. - [Customize the Library page](https://help.kajabi.com/articles/website/pages/customizing-your-library-page.md): Learn about your Library page to design a beautifully branded website page for your customers to access their purchased products. - [Customize website pages with the Website Builder](https://help.kajabi.com/articles/website/pages/customizing-your-website-pages-with-the-website-builder.md): Learn to design your website pages with the Website Builder. - [Customize a website with the legacy template, Premier](https://help.kajabi.com/articles/website/pages/customizing-your-website-with-the-legacy-template-premier.md): Learn the basics of customizing your Website Design Template with Premier. - [Design a website](https://help.kajabi.com/articles/website/pages/designing-your-website.md): Build your website with Kajabi using flexible, beautifully designed, user-friendly pages. - [Diagnose, locate, and remove malware](https://help.kajabi.com/articles/website/pages/diagnosing-locating-and-removing-malware.md): Learn how to diagnose, locate, and remove malware from your Kajabi Site. - [Difference between an image gallery and a section gallery](https://help.kajabi.com/articles/website/pages/difference-between-an-image-gallery-and-a-section-gallery.md): Learn the difference between setting up an Image Gallery Section and adding Images to your Section Gallery. - [Difference between website templates, builders, and page templates](https://help.kajabi.com/articles/website/pages/difference-between-website-templates-builders-and-page-templates.md): Learn the difference between builders, website templates, and page templates on Kajabi. - [Do I need to add a separate thumbnail image to my video?](https://help.kajabi.com/articles/website/pages/do-i-need-to-add-a-separate-thumbnail-image-to-my-video.md): Learn to add a thumbnail image for a video on your landing page. - [Do you allow in-app code embedding to integrate with other systems?](https://help.kajabi.com/articles/website/pages/do-you-allow-in-app-code-embedding-to-integrate-with-other-systems.md): Add custom embed code to a page on your Website or Course to connect to external applications. - [Does Kajabi host my video content?](https://help.kajabi.com/articles/website/pages/does-kajabi-host-my-video-content.md): Kajabi partners with Wistia to host all video content in your web pages and products at no additional cost. - [Does my website need to be ADA compliant?](https://help.kajabi.com/articles/website/pages/does-my-website-need-to-be-ada-compliant.md): Learn about implementing ADA-compliant features with Kajabi. - [Does the exit popup display on mobile devices?](https://help.kajabi.com/articles/website/pages/does-the-exit-popup-display-on-mobile-devices.md): Learn how to configure Exit Popups to display on mobile devices using the Timed Reveal feature. - [Duplicate a page](https://help.kajabi.com/articles/website/pages/duplicate-a-page.md): Keep your branding uniform throughout all pages by duplicating pages to save time. - [Edit blocks on a page](https://help.kajabi.com/articles/website/pages/editing-blocks-on-your-page.md): Learn to rename, duplicate, hide, delete, and reorder Blocks on your page. - [Edit sections on a page](https://help.kajabi.com/articles/website/pages/editing-sections-on-your-page.md): Learn to rename, duplicate, hide, delete, and reorder the Sections on your page. - [Find royalty free images](https://help.kajabi.com/articles/website/pages/finding-royalty-free-images.md): Discover 10 great stock photo websites for finding professional photographs for your commercial design purposes. - [How can I redirect a page?](https://help.kajabi.com/articles/website/pages/how-can-i-redirect-a-page.md): Learn two methods to redirect a page on Kajabi using Custom Code Block or Code Editor. - [How do I unpublish and publish my site?](https://help.kajabi.com/articles/website/pages/how-do-i-unpublish-and-publish-my-site.md): Learn how to hide your site while preparing for launch using a Coming Soon landing page. - [Access the code editor](https://help.kajabi.com/articles/website/pages/how-to-access-the-code-editor.md): Learn to access and edit the code in your Website, Product, and Landing Pages on Kajabi with the Pro Plan. - [Add a blog post to a page](https://help.kajabi.com/articles/website/pages/how-to-add-a-blog-post-to-your-page.md): Learn to add a Blog Post Block to your page to display your recently published Blog Posts. - [Add a Call to Action block to a website page and landing page](https://help.kajabi.com/articles/website/pages/how-to-add-a-call-to-action-block-to-your-website-page-and-landing-page.md): Learn to add a Call to Action Block to encourage website visitors to open a page, purchase an offer, and more. - [Add a call to action to a header with Premier](https://help.kajabi.com/articles/website/pages/how-to-add-a-call-to-action-to-your-header-with-premier.md): Learn to add a Call to Action button to your Header. - [Add a card block](https://help.kajabi.com/articles/website/pages/how-to-add-a-card-block.md): Learn to add a card block to sections of your page. - [Add a carousel section](https://help.kajabi.com/articles/website/pages/how-to-add-a-carousel-section.md): Learn to feature your images, videos, and testimonials on your page with an interactive Carousel Section. - [Add a countdown block to a page](https://help.kajabi.com/articles/website/pages/how-to-add-a-countdown-block-to-your-page.md): Learn to add a customized countdown timer to your pages with the Countdown Block. - [Add a countdown to a page with Premier](https://help.kajabi.com/articles/website/pages/how-to-add-a-countdown-to-your-page-with-premier.md): Learn to add and customize a Countdown Timer for your page. - [Add a custom section](https://help.kajabi.com/articles/website/pages/how-to-add-a-custom-section.md): Learn to add Custom Sections on your pages built with Kajabi. - [Add a dropdown menu to a header with Premier](https://help.kajabi.com/articles/website/pages/how-to-add-a-dropdown-menu-to-your-header-with-premier.md): Learn to add a custom Dropdown Menu to your Page Header with the Premier template. - [Add a favicon to a page with Premier](https://help.kajabi.com/articles/website/pages/how-to-add-a-favicon-to-your-page-with-premier.md): Learn to upload an image to use as your favicon for your page built with the Premier Template. - [Add a feature block to a page](https://help.kajabi.com/articles/website/pages/how-to-add-a-feature-block-to-your-page.md): The Feature Block is a great way to showcase content you want to highlight. Learn to add a customized Feature Block to your page. - [Add a features section](https://help.kajabi.com/articles/website/pages/how-to-add-a-features-section.md): Learn to add Features Sections to your pages built with Kajabi. - [Add a features section to a page with Premier](https://help.kajabi.com/articles/website/pages/how-to-add-a-features-section-to-your-page-with-premier.md): Learn to add a Features Section to your landing pages built with the legacy template, Premier. - [Add a form to a page](https://help.kajabi.com/articles/website/pages/how-to-add-a-form-to-your-page.md): Learn to add a Form to your pages built with Kajabi to grow your list. - [Add a form to a page with Premier](https://help.kajabi.com/articles/website/pages/how-to-add-a-form-to-your-page-with-premier.md): In Kajabi, Forms can be used to perform many actions, including subscribing someone to an email sequence, granting an offer, registering a person to an event, and segmenting subscribers based on which Forms they filled out. - [Add a hello bar to a page](https://help.kajabi.com/articles/website/pages/how-to-add-a-hello-bar-to-your-page.md): Learn to display announcements on your pages with a Hello Bar. - [Add a hero section](https://help.kajabi.com/articles/website/pages/how-to-add-a-hero-section.md): Learn to add a Hero Section to your pages. - [Add a hero section in a page with Premier](https://help.kajabi.com/articles/website/pages/how-to-add-a-hero-section-in-your-page-with-premier.md): The Hero section is your statement piece. It's the first thing people see when they visit your page and acts as a great way to introduce your brand. - [Add a link list block](https://help.kajabi.com/articles/website/pages/how-to-add-a-link-list-block.md): Learn to add a Link List Block (i.e., navigation menu) to your Sections. - [Add a logo to a page header](https://help.kajabi.com/articles/website/pages/how-to-add-a-logo-to-your-page-header.md): Learn to brand your page by adding a Logo Image or Logo Text to the page Header. - [Add a mailto link with a CTA](https://help.kajabi.com/articles/website/pages/how-to-add-a-mailto-link-with-a-cta.md): Learn to insert a Mailto Link in your Call to Action (CTA) to open the default email client in your page visitor's device. - [Add a ManyChat widget to a website](https://help.kajabi.com/articles/website/pages/how-to-add-a-manychat-widget-to-your-website.md): Learn to embed a Chat widget onto your site with ManyChat as a tool to communicate with your website visitors. - [Add a marketing & events section](https://help.kajabi.com/articles/website/pages/how-to-add-a-marketing-events-section.md): Learn to add a Marketing & Events Section to your pages built with Kajabi. - [Add a menu to a page header](https://help.kajabi.com/articles/website/pages/how-to-add-a-menu-to-your-page-header.md): Learn to add a Navigation Menu to your page Header for your users to easily navigate through your website. - [Add a multi-video launch block](https://help.kajabi.com/articles/website/pages/how-to-add-a-multi-video-launch-block.md): Learn to add a Multi-Video Launch Block to Sections of your page built with Kajabi. - [Add a multi-video launch to a page with Premier](https://help.kajabi.com/articles/website/pages/how-to-add-a-multi-video-launch-to-your-page-with-premier.md): Learn to add a Multi-Video Launch to your landing pages built with Premier. - [Add a section in a page with Premier](https://help.kajabi.com/articles/website/pages/how-to-add-a-section-in-your-page-with-premier.md): Learn to add a new section to your page with Premier. - [Add a social icon block](https://help.kajabi.com/articles/website/pages/how-to-add-a-social-icon-block.md): Learn to add links to popular social platforms to encourage your visitors to connect with you on social. - [Add a social section](https://help.kajabi.com/articles/website/pages/how-to-add-a-social-section.md): Learn to add a Social Section to your website and landing pages built with Kajabi. - [Add a social share block](https://help.kajabi.com/articles/website/pages/how-to-add-a-social-share-block.md): Learn to add a button to your landing and website pages to share to your social platforms (e.g., Twitter, Facebook, LinkedIn), send as an email, or copy the link to share anywhere. - [Add a strikethrough in an offer pricing card on a page](https://help.kajabi.com/articles/website/pages/how-to-add-a-strikethrough-in-an-offer-pricing-card-on-your-page.md): Learn to add a Strikethrough Price in a Pricing Card to market a discounted offer. - [Add a testimonials section](https://help.kajabi.com/articles/website/pages/how-to-add-a-testimonials-section.md): Learn to add Preset Testimonials Sections to your pages when building your site with Kajabi. - [Add a text block to a page](https://help.kajabi.com/articles/website/pages/how-to-add-a-text-block-to-your-page.md): Learn to add a Text Block to your page to communicate with your visitors, market your content, and describe your value. - [Add a user menu to a page header](https://help.kajabi.com/articles/website/pages/how-to-add-a-user-menu-to-your-page-header.md): Learn to add a user menu to the page header for your customers to easily access their user accounts from your page. - [Add a video block to pages](https://help.kajabi.com/articles/website/pages/how-to-add-a-video-block-to-your-pages.md): Adding video to your page is an entertaining and impactful way to engage with your audience, quickly informing your visitors while giving your site a discernible personality. - [Add a video embed block](https://help.kajabi.com/articles/website/pages/how-to-add-a-video-embed-block.md): Learn to embed your video into your pages built with Kajabi from external video hosting platforms such as YouTube or Vimeo. - [Add a video to a page with Premier](https://help.kajabi.com/articles/website/pages/how-to-add-a-video-to-your-page-with-premier.md): Adding video to your page is an entertaining and impactful way to engage with your audience, quickly informing your visitors while giving your site a discernible personality. - [Add a website widget to a page](https://help.kajabi.com/articles/website/pages/how-to-add-a-website-widget-to-your-page.md): Learn how to enhance the functionality of your website pages and landing pages by adding website widgets in the Page Builder. - [Add an accordion block to a page](https://help.kajabi.com/articles/website/pages/how-to-add-an-accordion-block-to-your-page.md): Learn to add Accordion Blocks to your pages built with Kajabi to organize content on your Page. - [Add an accordion section to a Premier page](https://help.kajabi.com/articles/website/pages/how-to-add-an-accordion-section-to-your-premier-page.md): Learn to add and customize Accordion Sections on your Premier Page. - [Add an age verification popup to Kajabi site pages](https://help.kajabi.com/articles/website/pages/how-to-add-an-age-verification-popup-to-your-kajabi-site-pages.md): Although Kajabi doesn't have a native feature to verify age, there are third-party applications that can be added to your site to display an age verification popup. - [Add an announcement to a Premier page](https://help.kajabi.com/articles/website/pages/how-to-add-an-announcement-to-your-premier-page.md): Learn to display an announcement above your Page Header with the Premier Template. - [Add an assessment block](https://help.kajabi.com/articles/website/pages/how-to-add-an-assessment-block.md): Learn to add an Assessment Block with Kajabi Pages to grow your list. - [Add an assessment to a page with Premier](https://help.kajabi.com/articles/website/pages/how-to-add-an-assessment-to-your-page-with-premier.md): Learn to add an Assessment Landing Page built with the legacy template, Premier. - [Add an audio block to a page](https://help.kajabi.com/articles/website/pages/how-to-add-an-audio-block-to-a-page.md): Adding audio to your page is an entertaining and impactful way to engage with your audience. Learn to add an Audio Block to a page. - [Add an audio section to a page](https://help.kajabi.com/articles/website/pages/how-to-add-an-audio-section-to-your-page.md): Adding audio to your page is an entertaining and impactful way to engage with your audience. Learn to add an Audio Section to a page. - [Add an event to a page](https://help.kajabi.com/articles/website/pages/how-to-add-an-event-to-your-page.md): Learn to add an Event Block to your pages built with Kajabi. - [Add an event to a page with Premier](https://help.kajabi.com/articles/website/pages/how-to-add-an-event-to-your-page-with-premier.md): Learn to add your Event to a Landing Page to promote your Event through your site. - [Add an event video to a page](https://help.kajabi.com/articles/website/pages/how-to-add-an-event-video-to-your-page.md): Learn to add an Event Video to your pages built with Kajabi to create an engaging video viewing experience for your page visitors. - [Add an FAQ section](https://help.kajabi.com/articles/website/pages/how-to-add-an-faq-section.md): Learn to add an FAQ Section to your pages built with Kajabi to address frequently asked questions from your audience. - [Add an image gallery to a page](https://help.kajabi.com/articles/website/pages/how-to-add-an-image-gallery-to-your-page.md): Use a gallery of images to showcase and design a beautiful page. Learn to create a visual experience with an Image Gallery. - [Add an image to a page](https://help.kajabi.com/articles/website/pages/how-to-add-an-image-to-your-page.md): Learn to create a beautifully designed page by adding and customizing images. - [Add an image to a page with Premier](https://help.kajabi.com/articles/website/pages/how-to-add-an-image-to-your-page-with-premier.md): Use images to help set a tone for your site, show your personality, and display what your business has to offer. - [Add blog posts to a page with Premier](https://help.kajabi.com/articles/website/pages/how-to-add-blog-posts-to-your-page-with-premier.md): Learn to add a Blog Post Block to your Page to display your recently published Blog Posts. - [Add Facebook comments to a page](https://help.kajabi.com/articles/website/pages/how-to-add-facebook-comments-to-your-page.md): Learn to add Facebook comments to your pages with the Custom Code Block. - [Add multiple videos to a page](https://help.kajabi.com/articles/website/pages/how-to-add-multiple-videos-to-your-page.md): Learn to add multiple videos to play directly on a page. - [Add offers & pricing sections](https://help.kajabi.com/articles/website/pages/how-to-add-offers-pricing-sections.md): Showcase your Offers and Pricing options with an Offers Block, Offer Storefront, Pricing Cards Block, or Pricing Options. - [Add offers to a library](https://help.kajabi.com/articles/website/pages/how-to-add-offers-to-your-library.md): Learn to present additional Offers inside your Member's Library. - [Add offers to a Premier page](https://help.kajabi.com/articles/website/pages/how-to-add-offers-to-your-premier-page.md): Learn to add an Offer to your Premier Page and encourage your visitors to checkout. - [Add Pages to a website](https://help.kajabi.com/articles/website/pages/how-to-add-pages-to-your-website.md): Learn more about the different types of Pages and how to best use them. - [Add pricing cards to a page](https://help.kajabi.com/articles/website/pages/how-to-add-pricing-cards-to-your-page.md): Learn to add a Pricing Block to showcase your Products, Services, Pricing Options, and more. - [Add pricing options to a page with Premier](https://help.kajabi.com/articles/website/pages/how-to-add-pricing-options-to-your-page-with-premier.md): Learn to add a Pricing Options Section to showcase your Products, Services, Pricing Options, and more in your landing pages built with the Legacy Template, Premier. - [Add recommended courses to the library with Premier](https://help.kajabi.com/articles/website/pages/how-to-add-recommended-courses-to-the-library-with-premier.md): Learn to add a Recommended Courses Section to your customers' Library with the legacy template, Premier. - [Add testimonials to a page with Premier](https://help.kajabi.com/articles/website/pages/how-to-add-testimonials-to-your-page-with-premier.md): Learn to add testimonials to your landing pages built with the Legacy Template, Premier. - [Add text to a page with Premier](https://help.kajabi.com/articles/website/pages/how-to-add-text-to-your-page-with-premier.md): Learn to add Text to your page with the Premier Template to communicate with your visitors, market your content, and describe your value. - [Align blocks in a section](https://help.kajabi.com/articles/website/pages/how-to-align-blocks-in-a-section.md): Learn to vertically align your Blocks in a Section when customizing your pages. - [Build pages with saved sections](https://help.kajabi.com/articles/website/pages/how-to-build-pages-with-saved-sections.md): Reuse and repurpose your favorite sections on a page by saving your custom-designed sections to reuse on another page. - [Build a 404 page](https://help.kajabi.com/articles/website/pages/how-to-build-your-404-page.md): Learn to design your 404 error page with the website builder. - [Build an about page](https://help.kajabi.com/articles/website/pages/how-to-build-your-about-page.md): Learn to build a strong brand and share your story with the About page. - [Build an announcement page](https://help.kajabi.com/articles/website/pages/how-to-build-your-announcement-page.md): Learn to build your Announcement page to provide an easy-to-access location for your customers to view your Product and Site Announcements. - [Build a contact page](https://help.kajabi.com/articles/website/pages/how-to-build-your-contact-page.md): Encourage your site visitors to reach out to you and your team with a Contact Us Form. - [Build a custom homepage](https://help.kajabi.com/articles/website/pages/how-to-build-your-custom-homepage.md): Learn to customize your default Homepage with the Website Builder. - [Build a customer directory](https://help.kajabi.com/articles/website/pages/how-to-build-your-customer-directory.md): Encourage your customers to connect with like-minded people with the Customer Directory page available with the Website Builder. - [Build a login page](https://help.kajabi.com/articles/website/pages/how-to-build-your-login-page.md): Learn to customize the login page for your customers. - [Build a store](https://help.kajabi.com/articles/website/pages/how-to-build-your-store.md): Learn to showcase your offerings by setting up your custom-designed Store page. - [Build a thank you page](https://help.kajabi.com/articles/website/pages/how-to-build-your-thank-you-page.md): Learn to design your standard Thank You page with the Website Builder to display after every successful purchase. - [Change the language in the password recovery and password reset pages](https://help.kajabi.com/articles/website/pages/how-to-change-the-language-in-the-password-recovery-and-password-reset-pages.md): Learn to edit the language for your Password Recovery and Password Reset pages. - [Change the link of a header logo](https://help.kajabi.com/articles/website/pages/how-to-change-the-link-of-a-header-logo.md): With the Code Editor available with Access or the Pro Plan, learn to change the link of your Header Logo. - [Collect reviews on a Kajabi site](https://help.kajabi.com/articles/website/pages/how-to-collect-reviews-on-your-kajabi-site.md): Learn to display reviews and ratings on your pages with EmbedSocial. - [Compress a video file using Handbrake](https://help.kajabi.com/articles/website/pages/how-to-compress-a-video-file-using-handbrake.md): Learn to use Handbrake to compress your video files. - [Connect landing pages to a website](https://help.kajabi.com/articles/website/pages/how-to-connect-your-landing-pages-to-your-website.md): Learn to link your Landing Pages to your website with navigation menus and buttons. - [Convert an image to PNG](https://help.kajabi.com/articles/website/pages/how-to-convert-an-image-to-png.md): The most compatible image filetype with Kajabi is PNG. If your image is not uploading properly, try converting it to PNG format. - [Copy a page link](https://help.kajabi.com/articles/website/pages/how-to-copy-your-page-link.md): Learn to copy your Page URL to share, link, and connect your content like your emails, buttons, and more to your Page. - [Create a fixed header on a page](https://help.kajabi.com/articles/website/pages/how-to-create-a-fixed-header-on-your-page.md): Learn to create a fixed or sticky Header that moves with your page as you scroll. - [Create a page with Premier](https://help.kajabi.com/articles/website/pages/how-to-create-a-new-page-with-premier.md): Learn to build your landing pages with the legacy template, Premier. - [Create a section with images](https://help.kajabi.com/articles/website/pages/how-to-create-a-section-with-images.md): Learn to add preset Image Sections to your custom landing page with Kajabi Pages. - [Create a section with videos in a page](https://help.kajabi.com/articles/website/pages/how-to-create-a-section-with-videos-in-your-page.md): Learn to add Preset Video Sections to include engaging and informative video content in your pages built with Kajabi. - [Create a spacer on a page](https://help.kajabi.com/articles/website/pages/how-to-create-a-spacer-on-your-page.md): Learn to create a spacer section with custom content to organize and separate your page content. - [Create a telephone link](https://help.kajabi.com/articles/website/pages/how-to-create-a-telephone-link.md): Learn to add a telephone link to your page with a Call to Action (CTA) button. - [Create member only pages](https://help.kajabi.com/articles/website/pages/how-to-create-member-only-pages.md): Learn to create pages that can only be accessed by logged in customers. - [Customize the block width](https://help.kajabi.com/articles/website/pages/how-to-customize-the-block-width.md): Learn to customize your Block Width and to change the appearance of your Block. - [Customize the font on a page](https://help.kajabi.com/articles/website/pages/how-to-customize-the-font-on-your-page.md): Learn to customize your font with the Style Guide for your standard website pages, standalone pages, and funnel pages built with the latest page editor. - [Customize fonts and colors in Premier page settings](https://help.kajabi.com/articles/website/pages/how-to-customize-your-fonts-and-colors-in-your-premier-page-settings.md): Configure your pages to look great using page settings to ensure your default Colors, Fonts, and more are the same throughout your page. - [Customize a footer in a page with Premier](https://help.kajabi.com/articles/website/pages/how-to-customize-your-footer-in-your-page-with-premier.md): A Footer can be used to provide copyright information, and often menu items are duplicated in the Footer as well. Learn to customize your Footer using the Premier Template. - [Customize a header in a page with Premier](https://help.kajabi.com/articles/website/pages/how-to-customize-your-header-in-your-page-with-premier.md): Learn to customize your Header with the Premier Template. - [Customize images on Kajabi with Adobe Express](https://help.kajabi.com/articles/website/pages/how-to-customize-your-images-on-kajabi-with-adobe-express.md): Learn to design the images uploaded to your landing pages, website pages, email campaigns, and newsletters with Adobe Express. - [Customize section background settings](https://help.kajabi.com/articles/website/pages/how-to-customize-your-section-background-settings.md): Learn about your Section Background Settings to further customize and brand your page. - [Delete a landing page](https://help.kajabi.com/articles/website/pages/how-to-delete-a-landing-page.md): Learn to permanently remove a custom website page or a landing page. - [Design a blog homepage](https://help.kajabi.com/articles/website/pages/how-to-design-your-blog-homepage.md): Learn to customize the look and feel of your Blog homepage with the newest editing capabilities available with Kajabi's Website Builder. - [Design blog posts](https://help.kajabi.com/articles/website/pages/how-to-design-your-blog-posts.md): Learn to design the look and feel of your blog posts. - [Design a blog search page](https://help.kajabi.com/articles/website/pages/how-to-design-your-blog-search-page.md): Learn to design the overall appearance of your Blog Search page. - [Disable standard website pages](https://help.kajabi.com/articles/website/pages/how-to-disable-standard-website-pages.md): Learn to disable standard website pages in the global settings of your Website Builder. - [Duplicate a page to another Kajabi site](https://help.kajabi.com/articles/website/pages/how-to-duplicate-your-page-to-another-kajabi-site.md): Learn to duplicate a landing page onto another Kajabi site by exporting and importing your landing page. - [Duplicate a website to landing pages](https://help.kajabi.com/articles/website/pages/how-to-duplicate-your-website-to-landing-pages.md): Learn to duplicate your custom website page into a landing page. - [Edit the text editor color picker for pages](https://help.kajabi.com/articles/website/pages/how-to-edit-the-text-editor-color-picker-for-your-pages.md): Customize the color picker for your text editor to match your brand. - [Edit a website title](https://help.kajabi.com/articles/website/pages/how-to-edit-your-website-title.md): Customize the name of your site by editing the title in your Site Details. - [Embed a third-party audio player to a page](https://help.kajabi.com/articles/website/pages/how-to-embed-a-third-party-audio-player-to-a-page.md): Display audio files on your page by embedding a third-party audio player. - [Embed a video to a page with Premier](https://help.kajabi.com/articles/website/pages/how-to-embed-a-video-to-your-page-with-premier.md): Embed videos from YouTube, Vimeo, or Wistia on your Premier pages. - [Embed custom code to a page with Premier](https://help.kajabi.com/articles/website/pages/how-to-embed-custom-code-to-your-page-with-premier.md): Add custom code to your pages built with the legacy Premier template without needing access to the Code Editor. - [Embed custom fonts to a page](https://help.kajabi.com/articles/website/pages/how-to-embed-custom-fonts-to-your-page.md): Customize and brand your site by embedding custom fonts from Google Fonts and Adobe Fonts. - [Export a landing page](https://help.kajabi.com/articles/website/pages/how-to-export-a-landing-page.md): Export your landing page to import onto another site or share as a template. - [Flush DNS and clear browser cache](https://help.kajabi.com/articles/website/pages/how-to-flush-your-dns-and-clear-your-browsers-cache.md): Resolve internet connectivity and security issues by clearing your browser cache and flushing your DNS. - [Access the Page Editor](https://help.kajabi.com/articles/website/pages/how-to-get-to-the-page-editor.md): Customize your Website, Landing, and Funnel pages. - [Hide a page from search engines](https://help.kajabi.com/articles/website/pages/how-to-hide-your-page-from-search-engines.md): Prevent your landing page from being indexed by search engines. - [Hide a site to prepare for launch](https://help.kajabi.com/articles/website/pages/how-to-hide-your-site-to-prepare-for-launch.md): Learn to unpublish or hide your site until you're ready for it to go live. - [Install an add to calendar button to a page](https://help.kajabi.com/articles/website/pages/how-to-install-an-add-to-calendar-button-to-your-page.md): Learn to use an Add to Calendar Button for your site visitors to easily add your events to their calendars. - [Make a navigation menu link visible to logged in users only](https://help.kajabi.com/articles/website/pages/how-to-make-a-navigation-menu-link-visible-to-logged-in-users-only.md): Learn to create a customers-only experience by making navigation links visible only to logged-in users. - [Make the switch to the Website Builder](https://help.kajabi.com/articles/website/pages/how-to-make-the-switch-to-the-new-website-builder.md): Learn to install and activate the Website Builder and begin designing your website pages with the latest editing capabilities. - [Publish and draft a page](https://help.kajabi.com/articles/website/pages/how-to-publish-and-draft-your-page.md): Learn to set your Page Visibility Settings to Published or Draft. - [Remove a call to action button in a text and image section](https://help.kajabi.com/articles/website/pages/how-to-remove-a-call-to-action-button-in-a-text-image-section.md): Learn to remove a Call to Action button from a Text and Image Section in your landing pages. - [Remove closed captions from a video](https://help.kajabi.com/articles/website/pages/how-to-remove-closed-captions-from-a-video.md): Learn to delete Closed Captions uploaded to your video. - [Sell physical products on Kajabi with Shopify buy buttons](https://help.kajabi.com/articles/website/pages/how-to-sell-physical-products-on-kajabi-with-shopify-buy-buttons.md): Connect your Shopify Collection to your Kajabi site to sell physical products directly through your website. - [Set anchor links in a page with Premier](https://help.kajabi.com/articles/website/pages/how-to-set-anchor-links-in-your-page-with-premier.md): Learn how to use anchor links in Kajabi to navigate users from one page section to another. - [Set custom colors for all color pickers on a site](https://help.kajabi.com/articles/website/pages/how-to-set-custom-colors-for-all-color-pickers-on-your-site.md): Learn how to customize your default color palette in Kajabi to integrate your brand colors across your site. - [Set up a Help Center template](https://help.kajabi.com/articles/website/pages/how-to-set-up-your-help-center-template.md): Customize your Help Center landing page template to align with your brand and meet the needs of your audience. - [Set up a multi-video launch section](https://help.kajabi.com/articles/website/pages/how-to-set-up-your-multi-video-launch-section.md): Learn to set up a multi-video launch section to create a unique, interactive video viewing experience for your visitors. - [Speed up a Kajabi site: Boost desktop and mobile load times](https://help.kajabi.com/articles/website/pages/how-to-speed-up-your-kajabi-site-boost-desktop-and-mobile-load-times.md): Learn steps to improve your Kajabi site's performance and load speed on both desktop and mobile platforms. - [Troubleshoot files not uploading](https://help.kajabi.com/articles/website/pages/how-to-troubleshoot-files-not-uploading.md): Learn to troubleshoot your site when experiencing issues uploading files. - [Troubleshoot Kajabi if pages don't load properly](https://help.kajabi.com/articles/website/pages/how-to-troubleshoot-kajabi-if-your-pages-dont-load-properly.md): Follow troubleshooting steps to fix pages that aren't loading properly on your desktop or laptop devices. - [Update a template](https://help.kajabi.com/articles/website/pages/how-to-update-a-template.md): Learn to update your templates for Website Pages, Landing Pages, Product Pages, and Emails to fix bugs or add features. - [Upload a favicon to a page](https://help.kajabi.com/articles/website/pages/how-to-upload-a-favicon-to-a-page.md): Learn to add your logo and branding to your pages by uploading a favicon image. - [Upload a landing page template](https://help.kajabi.com/articles/website/pages/how-to-upload-a-landing-page-template.md): Customize the look and feel of your landing pages by uploading a custom template. - [Upload a website template](https://help.kajabi.com/articles/website/pages/how-to-upload-a-new-website-template.md): Learn to upload website templates, export and import templates, and activate your fully customized templates. - [Upload a PDF onto a page](https://help.kajabi.com/articles/website/pages/how-to-upload-a-pdf-onto-a-page.md): Learn how to upload a PDF file onto a page to provide supplemental or additional content. - [Upload a PDF onto a page with Premier](https://help.kajabi.com/articles/website/pages/how-to-upload-a-pdf-onto-your-page-with-premier.md): Learn to upload a PDF file onto your pages built with the legacy template, Premier. - [Upload from a list of recent videos or images](https://help.kajabi.com/articles/website/pages/how-to-upload-from-a-list-of-recent-videos-or-images.md): Learn how to easily upload from previously uploaded images or videos stored on your site. - [Upload a favicon and logo used on templates](https://help.kajabi.com/articles/website/pages/how-to-upload-your-favicon-and-logo-used-on-new-templates.md): Upload your default logo and favicon that will be used on all newly created Website and Page templates. - [Use a Call to Action](https://help.kajabi.com/articles/website/pages/how-to-use-a-call-to-action.md): Learn to use a Call to Action (CTA) on your pages to encourage website visitors to take action. - [Use a Call to Action in a page with Premier](https://help.kajabi.com/articles/website/pages/how-to-use-a-call-to-action-in-your-page-with-premier.md): Learn to use a Call to Action on your landing pages to encourage website visitors to take action. - [Use a CTA to lead to a section of a page](https://help.kajabi.com/articles/website/pages/how-to-use-a-cta-to-lead-to-a-section-of-your-page.md): Learn how to use a Call to Action to navigate users from one section of your page to another. - [Use a Google Font on a site with Premier](https://help.kajabi.com/articles/website/pages/how-to-use-a-google-font-on-your-site-with-premier.md): Learn to add a Google Font to your page with the Legacy Template, Premier. - [Add an Exit Popup to a page with Premier](https://help.kajabi.com/articles/website/pages/how-to-use-the-exit-popup-in-your-page-with-premier.md): Encourage visitors to take action before leaving a page. - [Use the two step optin popup](https://help.kajabi.com/articles/website/pages/how-to-use-the-two-step-optin-popup.md): Learn to add a Two Step Optin Popup to your pages built with Kajabi to help grow your list. - [Use the two step optin popup in a page with Premier](https://help.kajabi.com/articles/website/pages/how-to-use-the-two-step-optin-popup-in-your-page-with-premier.md): Learn to add a Two Step Opt-in Popup to your page built with Premier. - [Use style settings with the website builder](https://help.kajabi.com/articles/website/pages/how-to-use-your-style-settings-with-the-website-builder.md): Learn to streamline your website build with settings to customize favicon, colors, buttons, and more. - [Use YouTube Live on a page](https://help.kajabi.com/articles/website/pages/how-to-use-youtube-live-on-a-page.md): Go Live with YouTube directly from your site using a Video Embed Block and deliver content in real-time. - [View page analytics](https://help.kajabi.com/articles/website/pages/how-to-view-your-page-analytics.md): Track statistics for individual pages to understand the impact on your conversion rates. - [View the page editor version](https://help.kajabi.com/articles/website/pages/how-to-view-your-page-editor-version.md): Learn to locate which version of the Page Editor you are currently using on your Kajabi Page or Website. - [Image dimensions for a website](https://help.kajabi.com/articles/website/pages/image-dimensions-for-your-website.md): Use the appropriate image dimensions to mirror the visual appearance of your selected template. - [Image dimensions for a website Builder templates](https://help.kajabi.com/articles/website/pages/image-dimensions-for-your-website-builder-templates.md): Use the appropriate image dimensions to mirror the visual appearance of your selected Website Builder template. - [Inline Text Editor](https://help.kajabi.com/articles/website/pages/inline-text-editor.md): Learn how to use the Inline Text Editor to edit the text on your Kajabi pages easily and efficiently. - [Is white labeling possible?](https://help.kajabi.com/articles/website/pages/is-white-labeling-possible.md): Learn about Kajabi branding removal options available on Growth and Pro plans. - [Landing Page A/B Testing overview](https://help.kajabi.com/articles/website/pages/landing-page-ab-testing-overview.md): Learn how to use Landing Page A/B testing to optimize your Landing Page to drive better results. - [Landing Page slug improvements](https://help.kajabi.com/articles/website/pages/landing-page-slug-improvements.md): Learn about the updated URL structure for landing pages released on January 15, 2019. - [Landing Page templates overview](https://help.kajabi.com/articles/website/pages/landing-page-templates-overview.md): Learn about the streamlined and premium-designed landing page templates available in Kajabi. - [Link to a section of a different page](https://help.kajabi.com/articles/website/pages/linking-to-a-section-of-a-different-page.md): Learn to link to a section of a page by using anchor tags to help your site visitors navigate. - [Pages explained](https://help.kajabi.com/articles/website/pages/pages-explained.md): Learn to build your custom pages with the Kajabi Page Builder. - [Pages overview](https://help.kajabi.com/articles/website/pages/pages-overview.md): Learn to create pages for your site, manage your existing pages, and understand the differences between page types. - [Preview a page](https://help.kajabi.com/articles/website/pages/preview-your-page.md): Learn to preview your page to test the look and feel and ensure quality for your site visitors. - [Recommended image dimensions for Page templates](https://help.kajabi.com/articles/website/pages/recommended-image-dimensions-for-page-templates.md): Use the appropriate image dimensions to mirror the visual tone of your Kajabi Page templates. - [Recommended image sizes for Legacy Pages](https://help.kajabi.com/articles/website/pages/recommended-image-sizes-for-legacy-pages.md): Use the correct image sizes to enhance the look and feel of your legacy pages. - [Recreate a website with the Website Builder](https://help.kajabi.com/articles/website/pages/recreating-your-website-with-the-website-builder.md): Learn how to recreate your website with the Website Builder by installing a template and activating it. - [SEO and sharing](https://help.kajabi.com/articles/website/pages/seo-and-sharing.md): Optimize your search engine results and boost your site traffic with SEO and Sharing settings. - [Static pages](https://help.kajabi.com/articles/website/pages/static-pages.md): Create simple pages with limited customization for text-heavy content like terms of service or privacy policy. - [Updates to Kajabi's website feature FAQs](https://help.kajabi.com/articles/website/pages/updates-to-kajabis-website-feature-faqs.md): Find answers to frequently asked questions about the recent updates to Kajabi's website feature. - [View a sitemap](https://help.kajabi.com/articles/website/pages/view-your-sitemap.md): Learn how to view your website sitemap and understand how search engines index your pages. - [Website Builder FAQs](https://help.kajabi.com/articles/website/pages/website-builder-faqs.md): Find answers to frequently asked questions about the Website Builder in Kajabi. - [Website templates overview](https://help.kajabi.com/articles/website/pages/website-templates-overview.md): Explore the available website templates in Kajabi and learn how to choose the right one for your site. - [Website widgets available in the Kajabi Page Builder](https://help.kajabi.com/articles/website/pages/website-widgets-available-in-the-kajabi-page-builder.md): Explore the available website widgets you can add to your pages in Kajabi. - [Compatible file types and upload limits in Kajabi](https://help.kajabi.com/articles/website/pages/what-are-compatible-file-types-i-can-upload-in-kajabi.md): Supported file types and upload size limits for images, videos, audio, and documents in Kajabi. - [What are some of the best website features available with Kajabi?](https://help.kajabi.com/articles/website/pages/what-are-some-of-the-best-website-features-available-with-kajabi.md): Discover the key website features available with Kajabi to help grow your business. - [What is split testing?](https://help.kajabi.com/articles/website/pages/what-is-split-testing.md): Learn how to conduct a split test to measure the effectiveness of your webpage and the variables within it. - [What is the difference between a landing page and a website?](https://help.kajabi.com/articles/website/pages/what-is-the-difference-between-a-landing-page-and-a-website.md): Understand the key differences between a landing page and a website in Kajabi. - [What is the difference between Premier and Encore?](https://help.kajabi.com/articles/website/pages/what-is-the-difference-between-premier-and-encore.md): Learn the differences between Kajabi's Page Editors, Premier and Encore, to determine which version is right for you. - [What is the link to my login page?](https://help.kajabi.com/articles/website/pages/what-is-the-link-to-my-login-page.md): Find the direct link to your Kajabi login page and library page. - [What is the Template Home?](https://help.kajabi.com/articles/website/pages/what-is-the-template-home.md): Learn about the Template Home and how it serves as the default homepage on your website. - [What's new with Builder 2.0](https://help.kajabi.com/articles/website/pages/whats-new-with-builder-20.md): Learn about the most recent updates available with Builder 2.0. - [What's new with the Page and Email Builder](https://help.kajabi.com/articles/website/pages/whats-new-with-the-page-and-email-builder.md): Learn about the most recent updates available with the Page and Email Editors. - [Who updated my landing pages?](https://help.kajabi.com/articles/website/pages/who-updated-my-landing-pages.md): Understand why your landing pages may display an updated timestamp without manual changes. - [Why aren't my changes saving?](https://help.kajabi.com/articles/website/pages/why-arent-my-changes-saving.md): Learn why your changes may not be saving and how to avoid losing your edits. - [Why do I have two login buttons in my page header?](https://help.kajabi.com/articles/website/pages/why-do-i-have-two-login-buttons-in-my-page-header.md): Learn how to remove the second login button from your page header. - [Why does the login page or 404 error keep appearing when editing my site?](https://help.kajabi.com/articles/website/pages/why-does-the-login-page-or-404-error-keep-appearing-when-editing-my-site.md): Learn how to resolve login page or 404 errors when customizing your site by enabling cookies. - [Kajabi Help Center](https://help.kajabi.com/index.md): Explore our documentation, guides, and API to help you build your business on Kajabi. ## OpenAPI Specs - [openapi](https://help.kajabi.com/openapi.yaml)