W
by macbookandrew
0 (0 reviews)
WishList Member: Show All Levels
Provides a shortcode that outputs all levels a member is allowed to access.
Tested up to WP 4.5.33 (Current: 7.0.2)
v1.5.2
Current Version v1.5.2
Updated 10 years ago
Last Update on 26 May, 2016
Refreshed 8 hours ago
Last Refreshed on
Rank
#39,797
—
No change
Active Installs
10+
—
No change
KW Avg Position
70
+1 better
Downloads
2.1K
+1 today
Support Resolved
0%
—
No change
Rating
0%
Review 0 out of 5
0
(0 reviews)
Next Milestone 20
10+
20+
15,066
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
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
Need 8 more installs to reach 20+
Rank Changes
Current
#39,797
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
0.0
0 reviews
Overall
0%
5
0
(0%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 1 of 1| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| Wishlist Member | 70 | — | Tag | 20 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.5.2
- Last Updated
- May 26, 2016
- Requires WP
- 4.0+
- Tested Up To
- 4.5.33
- PHP Version
- N/A
- Author
- macbookandrew
Support & Rating
- Rating
- ☆ ☆ ☆ ☆ ☆ 0
- 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
Adminify – White Label, Admin Menu Editor, Login Customizer
7K+ installs
#2,724
Master Addons for Elementor – Elementor Addons, Widgets, Mega Menu Builder, Popup Builder, Widget Builder & Template Kits
30K+ installs
#988
Flamingo
800K+ installs
#80
Members – Membership & User Role Editor Plugin
300K+ installs
#186
HubSpot All-In-One Marketing - Forms, Popups, Live Chat
200K+ installs
#214
Frequently Asked Questions
Common questions about WishList Member: Show All Levels
Yes; use [wlm_all_authorized_levels group_by_level="true"] to group by pages by each level and (by default) show each level’s header.
Yes; use [wlm_all_authorized_levels show_header="false"] to hide the header of each level (only works with group_by_level).
Yes; get the IDs of those pages from the WordPress admin page and then add them to the shortcode separated by commas, like this: [wlm_all_authorized_levels pages_to_ignore="151,20"]. You can also use the wlm_authorized_pages_array filter to modify the array; see below for an example.
Yes, you can include specific pages using the pages_to_include attribute like this: [wlm_all_authorized_levels pages_to_include="151,20"]. You can also use the wlm_authorized_pages_array filter to modify the array: add_filter( 'wlm_authorized_pages_array', 'tweak_wlm_pages' ); function tweak_wlm_pages( $array ) { // add a page $array[] = $page_ID_to_add; // remove a page if ( $false !== ( $key = array_search( $page_ID_to_remove, $array ) ) ) { unset( $array[$key] ); } // return the modified array return $array; }
Not yet, but there are filters for every part of the output; here’s a list of the available filters: wlm_authorized_post_types: array of post types included in the WP_Query; defaults to array( 'page' ) wlm_all_levels_container_open: wraps everything; defaults to <div class="wishlist-member-levels"> wlm_all_levels_container_close: defaults to </div> wlm_all_levels_level_wrapper_open: wraps the entire list of items; defaults to <ul> wlm_all_levels_level_wrapper_close: defaults to </ul> wlm_all_levels_item_wrapper_open: wraps each item; defaults to <li (no closing bracket) wlm_all_levels_item_wrapper_close: defaults to </li> wlm_all_levels_item_wrapper_class: defaults to empty; space-separated list of classes to add to each item wlm_all_levels_item_link: defalts to <a href="' . get_permalink() . '">' . get_the_title() . '</a>; the post ID is available as a parameter to your callback function wlm_no_authorized_levels_message: defaults to <p>Sorry, you are not authorized to access any content. Please <a href="' . admin_url() . '">log in</a>, check your subscription status, or contact us for more information.</p>; shown when a user is not authorized for any WishList levels wlm_no_authorized_content_message: defaults to <p>Sorry, you are not authorized to access any content. Please <a href="' . admin_url() . '">log in</a>, check your subscription status, or contact us for more information.</p>; shown when there are no pages available