How to Build an Airtable-Powered Member Directory in WordPress

Updated July 2026 • 8 min read • By Fahad Murtaza

TableCrafter table builder, connect Gravity Forms, Google Sheets, Airtable, CSV, or JSON data sources
TableCrafter table builder, connect Gravity Forms, Google Sheets, Airtable, CSV, or JSON data sources

A member directory is one of the most practical things you can build with Airtable and TableCrafter. This end-to-end recipe covers everything: structuring the Airtable base, configuring the TableCrafter table, mapping the photo URL field to render images, enabling search by name, filtering by role, and placing the final shortcode. You will have a live, filterable directory on your WordPress site by the end. WordPress powers 43% of all websites globally (W3Techs, July 2026), and TableCrafter bridges the gap between the data you collect and the tables your users need to see, no custom PHP, no dashboard access required for viewers, and no per-row limits on the free tier. The free version on WordPress.org supports CSV, JSON, Google Sheets, and Excel. Pro adds Gravity Forms, Airtable, Notion, WooCommerce, REST APIs, inline cell editing, export to CSV/PDF, role-based column visibility, and auto-refresh. Every table embeds on any page with a. Airtable has over 450,000 organization customers worldwide (Airtable, 2024).

What You Are Building?

The finished directory will:

This setting persists across table rebuilds. If you change the data source later, you may need to revisit this step to remap columns from the new source to the existing table configuration.

If this step produces unexpected output, check the source data directly in the connected system. TableCrafter passes data through without modification — if a cell displays an unexpected value, the source record contains that value. Use the TableCrafter debug log (Settings > Advanced > Debug Mode) to trace the exact query sent to the source and the raw response received, which narrows the diagnosis to either a source-side or rendering-side issue.

Step 1: How Do I Set Up the Airtable Base?

Create a new Airtable base called Member Directory (or add a table to an existing base). In the table, create the following fields:

Add a few test records before connecting to TableCrafter so you have data to preview.

Step 2: How Do I Create a Filtered Airtable View?

Rather than showing all members including inactive ones, create a filtered view in Airtable that TableCrafter will pull from.

  1. In your Members table, click + Add a view and choose Grid view. Name it Active Members.
  2. Add a filter: Active is checked.
  3. Sort by Name A → Z.
  4. Hide any internal-only fields you do not want TableCrafter to see (like admin notes).

You will point TableCrafter at this Active Members view. Any member you uncheck in Airtable disappears from the WordPress directory automatically, no changes needed on the WordPress side.

The shortcode accepts all column and filter settings defined in the table builder as defaults, but you can override individual parameters inline. For example, `[tablecrafter id="1" per_page="25"]` overrides the default rows-per-page setting for this specific embed without changing the saved table configuration. This lets you reuse one table definition across multiple pages with different display requirements.

Step 3: How Do I Create the Airtable Personal Access Token?

Go to airtable.com/create/tokens and create a token with:

Copy the token and store it securely.

TableCrafter validates this configuration on save. If validation fails, the admin panel displays a specific error message identifying which field caused the problem. Correct the field value and save again without needing to restart the setup process.

When testing this feature, verify the result while logged in as a user with the target role, not as an admin. WordPress administrators see all rows and columns by default, which means admin accounts will not reflect role-restricted configurations during testing.

This configuration interacts with any caching or CDN layer active on your WordPress installation. If you use WP Rocket, LiteSpeed Cache, or a CDN such as Cloudflare, flush the page cache after making this change to ensure the updated configuration is reflected in the cached HTML served to visitors. TableCrafter's server-side output is regenerated on the next uncached request.

Step 4: How Do I Create the TableCrafter Table?

  1. In WordPress, go to TableCrafter → Add New Table.
  2. Name it Member Directory (this label appears in the admin table list and in the table title if you configure one).
  3. Select Airtable as the data source type.
  4. Enter your personal access token, the base ID (the appXXX... string from the Airtable URL), and the table name: Members (or whatever your Airtable table is named — this is case-sensitive).
  5. In the View field, enter Active Members. This filters your data at the Airtable API level, so only records visible in that view are pulled. If you leave the View field empty, all records in the table are included regardless of their status.
  6. Click Test Connection. You should see your field names listed in the column selector below — one entry per Airtable field that the API returned for this table and view combination.

If the field list is empty or you see a connection error, the most common causes are an expired personal access token, a base ID that was copied incorrectly (it must start with app), or a view name with a typo. Regenerate your token in Airtable under Account → Developer hub and re-paste it if the connection was working before but stopped.

Step 5: How Do I Map the Columns?

With the connection confirmed, configure each column:

Photo URL Column

  1. Find the Photo URL field in the column list.
  2. Set the Column Type to Image instead of URL.
  3. Set a thumbnail size, 60px height works well for a directory row.
  4. Set the column label to Photo.
  5. Disable sorting and filtering for this column.

Name Column

  1. Set column label to Name.
  2. Enable Sortable.
  3. This column participates in global search automatically.

Role Column

  1. Set column label to Role.
  2. TableCrafter auto-detects this as Single select and will render badges.
  3. Enable Filterable, this generates the dropdown filter by role.

Bio Column

  1. Set column label to About.
  2. Set a Max characters value of around 150 so long bios truncate gracefully in the table row. TableCrafter adds a “Read more” toggle.
  3. Disable sorting and filtering for this column.

Email Column

  1. Set column label to Contact.
  2. TableCrafter renders email fields as mailto: links automatically.
  3. Optionally set a static link label like Email to hide the raw address from display.

LinkedIn Column

  1. Set column label to LinkedIn.
  2. Column type: URL.
  3. Set a static link label of View Profile to render a clean link instead of the raw URL.
  4. Set Open in new tab to true.

Active Column

Toggle this column off entirely. Since you are already using the Active Members view in Airtable to filter, there is no need to display the Active checkbox in the table.

Step 6: How Do I Configure Display Settings?

Save the table. Note the table ID assigned (you will use it in the shortcode).

If the result does not match expectations after saving, use the TableCrafter debug log (enable via TableCrafter Settings > Advanced > Debug Mode) to trace exactly which configuration value is being applied for the current request.

After completing this step, verify the result by viewing the page as a logged-out visitor in an incognito window. This confirms the table behaves correctly for public visitors rather than reflecting admin-level permissions that may hide configuration issues during initial setup. Check both the rendered output and the browser console for any JavaScript errors.

Step 7: How Do I Place the Shortcode?

Add the shortcode to a new WordPress page titled Member Directory:

[tablecrafter id="1" filter="true" search="true"]

Replace 1 with your actual table ID. Publish the page and visit it to confirm the directory renders correctly.

Test this step while logged in as a user with the target role to confirm the expected behavior. Logged-in admin users always see all columns and all rows regardless of role restrictions, which can mask visibility issues during initial configuration.

The column mapping you define here is stored as a JSON configuration in the WordPress database. You can export this configuration using the TableCrafter export tool and import it to another table or another site. This is useful when replicating a table layout across multiple pages or when migrating a table to a staging environment for testing before going live.

If your directory page is linked from navigation, consider adding the page to a menu under a relevant parent like About or Community. The page itself needs no other setup, the shortcode handles everything.

Step 8: How Do I Test the Visitor Experience?

Before sharing the directory, verify these interactions work correctly:

TableCrafter re-fetches this data on each page load by default. If your data source updates infrequently and your site has significant traffic, enable the built-in caching option in the table's Performance tab. This stores the fetched data for a configurable number of minutes and serves it from WordPress transients, reducing API calls to the source and improving page load time for visitors.

  1. Type a name in the search bar and confirm rows filter in real time.
  2. Open the Role dropdown and select a role. Confirm only members with that role appear.
  3. Combine search and role filter. Confirm only matching rows appear.
  4. Click the Name column header to sort A–Z, then again for Z–A.
  5. Click an email link and confirm it opens your mail client.
  6. Click a LinkedIn link and confirm it opens in a new tab.
  7. Go to Airtable, add a new member record with Active checked, wait 5 minutes, and reload the directory. The new member should appear.
  8. Uncheck Active on a member in Airtable, wait 5 minutes, and reload. They should be gone from the directory.

How Does Handling Members Without Photos Work?

If a member's Photo URL field is empty in Airtable, the image cell renders blank by default. To show a fallback avatar instead:

  1. In the Photo column settings in TableCrafter, find Fallback Image URL.
  2. Enter the URL of a default avatar image hosted on your WordPress site or a CDN.

Members without a photo in Airtable will display the fallback avatar, keeping the directory visually consistent.

The setting is stored in the WordPress options table under the table's configuration key. It does not modify the original data source and can be changed at any time without affecting the underlying records.

The configuration you set here applies to every visitor who loads a page containing this table, regardless of whether they are logged in. Role-specific overrides for columns and rows are a separate layer and do not replace these global display settings. Apply global settings first, then add role restrictions as needed for tables that serve multiple user types.

How Does Keeping the Directory Updated Work?

Because TableCrafter fetches from Airtable on demand (with a 5-minute cache), your directory update workflow is simply:

  1. Open the Airtable base.
  2. Add, edit, or deactivate a member record.
  3. Within 5 minutes, the WordPress directory reflects the change automatically.

No WordPress logins, no page edits, no plugin updates required. The Airtable base is the single source of truth.

This step completes the connection between your data source and the TableCrafter table engine. Once saved, the plugin caches the connection credentials in the WordPress options table and uses them on every subsequent page load. If you update the source configuration later — for example, rotating an API key or changing a sheet URL — return to this step, enter the new value, and save again. The table updates immediately on next load without any shortcode changes.

If you need the directory to update instantly after a change in Airtable, for example, adding a speaker right before an event, use the Clear Cache button in TableCrafter → Manage Tables to force an immediate re-fetch.

Frequently Asked Questions

How Do I Set Up the Airtable Base?

Create a new Airtable base called Member Directory (or add a table to an existing base). In the table, create the following fields:

What Is TableCrafter?

TableCrafter is a WordPress plugin that turns data from Gravity Forms, Google Sheets, Airtable, Notion, REST APIs, CSV files, and WooCommerce into interactive, sortable, filterable frontend tables. Embed any table on any WordPress page with the [tablecrafter] shortcode or the native Gutenberg block. No PHP or custom development required. The free version supports CSV, JSON, Google Sheets, and Excel. Pro adds Gravity Forms, Airtable, Notion, WooCommerce, REST APIs, inline cell editing, export to CSV and PDF, role-based column visibility, and auto-refresh.

Does this require PHP or developer skills?

No. TableCrafter is configured entirely through the WordPress admin interface. You choose your data source, map fields to columns, and set display preferences using point-and-click controls. Embedding uses the [tablecrafter] shortcode or the native Gutenberg block.

Is the free version sufficient or do I need Pro?

The free plugin on WordPress.org supports CSV, JSON, Google Sheets, and Excel sources with unlimited tables, rows, and columns. Pro adds Gravity Forms, Airtable, Notion, WooCommerce, REST API sources, inline cell editing, bulk row actions, export to CSV and PDF, role-based column visibility, and auto-refresh every N seconds.

Ready to try it?

TableCrafter is free on WordPress.org. Pro unlocks inline editing, role-based permissions, and advanced data sources.

Changes take effect immediately after saving. No cache flush or page refresh is required for the new configuration to apply to all shortcode instances of this table.

If this step produces unexpected output, check the source data directly in the connected system. TableCrafter passes data through without modification — if a cell displays an unexpected value, the source record contains that value. Use the TableCrafter debug log (Settings > Advanced > Debug Mode) to trace the exact query sent to the source and the raw response received, which narrows the diagnosis to either a source-side or rendering-side issue.