NewPath WildApricotPress Add-on – Member Directory
NewPath WildApricotPress Add-on – Member Directory enables WordPress websites to render native WildApricot member directories and member profiles, wit …
Next Milestone 30
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Rank Changes
Downloads Growth
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
Tracked Keywords
Showing 3 of 3| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| Wild Apricot | 2 | — | Tag | 15 hours ago |
| wildapricot | 3 | — | Tag | 15 hours ago |
| membership directory | 112 | — | Tag | 15 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.0.0
- Last Updated
- Oct 05, 2022
- Requires WP
- 5.7+
- Tested Up To
- 6
- PHP Version
- 7.4 or higher
- Author
- NewPath Consulting
Support & Rating
- Rating
- ★ ☆ ☆ ☆ ☆ 1
- Reviews
- 0
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
Frequently Asked Questions
Common questions about NewPath WildApricotPress Add-on – Member Directory
How do I configure a membership directory?
To configure a member directory, you can select system fields, common fields and membership fields, from your Wild Apricot database. These will be included in the member directory.
Block Options
Click the Block options and select the fields to include, under System Fields, Common Fields and Member Fields. Click the down arrow to show the available fields that can be selected for the membership directory block.
Screenshot - Member directory membership fields
Filters
The Filters drop-down will enable you to use a previously created "Saved Search" from Wild Apricot. The saved search will filter and create a member directory that will always reflect the latest membership data based on your search criteria. When the "Saved Search" results changes, so does the member directory block that uses this search.
Screenshot - Selecting a WildApricot Saved Search
IMPORTANT: If you want to maintain member privacy, do not publicize the criteria of a saved search. As in Wild Apricot, members will appear in a saved searchs, regardless of the field used for the filter. An example of how publicizing the saved search criterial could expose sensitive member information: if there is a field "Number of Guns Owned", and a filter for "Guns > 0" was used for a member directory, and the saved search was publicized, that would expose the members who pass this criteria even if the Number of Guns Owned field was not in the member directory layout.
Enable Search
You can also enable a quick search of the member directory to visitors. All the fields in the member directory will be searched. Any fields not included in the direcory will not be searchable.
Screenshot - Enable search
Profile Link
Enabling a user profile link will show a link from each profile to a more detailed detailed, individual profile of a member. This option uses the wa-profile shortcode. Use the "User Profile" fields section to select which fields you would like to show in the single member profile.
Screenshot - Selecting User profile fields
Page Size
The page size option can be used to restrict how many members are shown on one page of a member directory block. Once enabled a set of page indictators will appear under the member directory to allow a visitor to page through the membership directory.
[Screenshot - Selecting number of results per page]https://wordpress.org/plugins/newpath-wildapricotpress-add-on-member-directory/#screenshots)
Hide Restricted Fields
This toggle will hide any privacy-restriced fields from showing in the member directory (ie member information can only be viewed by members). This is controlled by contact and global privacy settings in Wild Apricot. For security, fields that are set to "admin only" cannot be viewed in the member directory block.
The wa-contacts shortcode is built dynamically, based on the options selected under the block.
The below syntax is built automatically by the block, but it can be included manually, into any block or content area in WordPress.
[wa-contacts <database fields to include> page-size=<number of records to show> search saved-search=<saved search ID> profile hide_restricted_fields]
[/wa-contacts]
The profile, search and hide_restricted_fields can be used to turn on respective block options.
Member Profile Shortcode
The WAP Member Profile block builds the wa-profile shortcode based on the Block options.
Screenshot - Member profile
The options allow the selection of any system, common or membership fields to show in the single profile. A unique Wild Apricot User ID must be filled out to identify which contact or member is displayed in this block.
Screenshot - Members Profile Block Options
The shortcode syntax is built into the block based on options chosen in Block, but it can be included manually into any block or content area in WordPress.
[wa-profile <database fields> user-id=<Wild Apricot UserID> hide_restricted_fields]
The hide_restricted_fields can be used to turn on this option.
How do I customize the CSS of the Member Directory?
Each element in the member directory and member profile has a unique CSS class inserted which can be customized in the CSS style sheet.
Member Directory IDs and Classes
The member directory will be in a class called wp-block-wawp-member-addons-member-directory.
All hidden fields will be in a class called hidden.
The following IDs contain the various block options:
<div id="enable_search" data-search-enabled="false"></div>
<div id="page_size" data-page-size="1"></div>
<div id="saved_search" data-saved-search="0"></div>
<div id="profile_link" data-profile-link="true"></div>
<div id="hide_restricted_fields" data-hide-restricted-fields="false"></div>
All contacts will be paginated in the class wa-contacts. The pagination will be contained in a class called wa-pagination. Each page of the pagination is in a class called wa-pagination-page. Each contact or member is in a class called wa-contact. Each field value will use the class of the field name as well as a custom attribute called wa-data-label with the name of the field as the value.
Here is an example of a wa-contact element which contains one member and the View profile link.
<div class="wa-contact">
<div class="donor" data-wa-label="Donor">
<div class="my-first-name" data-wa-label="My First name">Carol</div>
<div class="email" data-wa-label="Email">carol@newpathconsulting.com</div>
<div class="wa-profile-link" id="profile-link" data-user-id="49286448">View profile</div>
</div>
Member Profile IDs and Classes
The member profile will be rendered using a class called wa-profile.
Each field will have an ID using the same name of the field. For example here is a profile with just the City field, and the value Toronto:
<div id="city" class="field">
<span class="field-name">City</span>
<span class="city field-value" data-wa-label="City">Toronto</span>
</div>
The row contains the ID city and a class field. Each element of the row has the field-name class and the value has a class fieldname field-value. A custom attribute data-wa-label is included for convenience.