ITERAS
by ITERAS 3 (2 reviews)

ITERAS

Integration with ITERAS, a cloud-based state-of-the-art system for managing subscriptions and payments for magazines.

ITERAS ranks #23,401 among WordPress.org plugins with 30+ active installations, is #1,003 of 3,382 in the Communication category, a 3/5 rating from 2 reviews, and was last updated May 20, 2026. Data from WordPress.org, refreshed twice daily — see methodology.

Tested up to WP 6.9 (Current: 7.1.2)
v1.8.4 Current Version v1.8.4
Updated 4 months ago Last Update on 20 May, 2026
Refreshed 13 hours ago Last Refreshed on
#1,003 of 3,382 in Communication Top 50% by installs
View on WordPress.org
Rank
#23,401
-106 this week
Active Installs
30+
-9.1%
KW Avg Position
32
5 worse
Downloads
4.3K
+8 today
Support Resolved
0%
No change
Rating
60%
Review 3 out of 5
3 (2 reviews)

Next Milestone 40

Total Progress 10%
30+ 40+
8,987
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
Upgrade to Pro
Need 9 more installs to reach 40+

Rank Changes

23,274 23,319 23,364 23,408 23,453 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
23,223 23,379 23,534 23,689 23,845 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
Current #23,401
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

0 10 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
0 10 20 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

3.0
2 reviews
Overall 60%
5
1 (50%)
4
0 (0%)
3
0 (0%)
2
0 (0%)
1
1 (50%)

Frequently Asked Questions

Common questions about ITERAS

Each page/post gets a little box where you can choose whether to paywall it or not. The plugin then associates a little bit of extra metadata with the post (stored with the key "iteras_paywall"). Then when that post is served, the plugin first checks if the visitor has a valid access pass from the ITERAS server. If not you can setup the plugin to cut off the content and instead insert call to action content (sign up to get access or login). Or you can also setup the plugin to redirect to another landing page.
Make a test subscriber inside Iteras, fill in the plugin settings, add a test post that you set to be behind the paywall, then experiment with the layout. Once you're happy, you can add the paywall to real posts.
You can insert a login iframe in the content by using the WordPress shortcode [iteras-paywall-login paywallid="abc123,def456"]. You can insert an ordering iframe for signing up for a subscription or ordering a product with the shortcode [iteras-ordering orderingid="subscribenow"]. You can insert a self-service iframe to allow subscribers to manage their subscriptions with the shortcode [iteras-selfservice]. The [iteras-return-to-page url='/some/url/?p=123'] is useful if you need to link to another page in the call to action content. It will append the current page to the given URL so that the visitor is redirected back to the original page after having completed an ordering flow or having logged in. NOTE: due to limitations in the WordPress parser, when you put [iteras-return-to-page] in an HTML tag attribute, you need to be aware of single quotes and double quotes. <a href="[iteras-return-to-page url='/some/url/?p=123']">sign up!</a> works while <a href="[iteras-return-to-page url="/some/url/?p=123"]">sign up!</a> doesn't! These shortcodes, except [iteras-return-to-page], are internally converted to calls to the ITERAS Javascript API. You can pass more parameters if you need to, e.g. next, see the API documentation for more details. The profile parameter is implicit and comes from your plugin settings. There's a few shortcodes for controlling content based on the users logged in status. For showing content when the user has access use [iteras-if-logged-in paywallid="abc123,def456"]Content only shown if the user is logged in and has access[/iteras-if-logged-in]. [iteras-if-not-logged-in] does the opposite. [iteras-if-logged-in-link paywallid="abc123,def456"]Content[/iteras-if-logged-in-link] will automatically insert a link to the subscriber landing page that is configured with the plugin, alternatively a url attribute can be supplied, while login_text can we used to customize the link text. These shortcodes only work with server validation enabled.
Yes! Add the GET-parameter orderproduct to a link to your ordering page, e.g. /buysubscription/?orderproduct=12MPro. This will select the "12MPro" product when the user gets to the form.
It is possible to override the decision of which content should be paywalled. Add a hook to the iteras_override_content_paywall filter to define a function that should have the last say in if the content should be paywalled or not. This can for example be used for handling share links the gives the user access eventhough they don't have a login. This could look something like this: /** * Override the decision to paywall the particular content * * @param integer $post_paywall_ids The paywalls that give access to the post, if empty the post would not be paywalled be default * @param object $post Reference to the post being potentially paywalled * @param boolean $user_authorized If the user has a valid iteraspass that has the appropriate access * @param array $paywall_config Contains the Iteras plugin configuration */ function make_paywall_decision($post_paywall_ids, $post, $user_authorized, $paywall_config) { // example of generated share token error_log(openssl_encrypt(json_encode(array('shared_by'=>"John Doe", 'post_id' => $post->ID)), "aes-128-cbc", "somesecret")); $token = $_GET['token']; if (isset($token)) { $share = json_decode(openssl_decrypt($token, "aes-128-cbc", "somesecret")); if (isset($share) and $share->post_id == $post->ID) { echo "Shared by " . $share->shared_by; // signal that the paywall should not be applied return false; } } // return the paywall ids to apply the paywall as normal return $post_paywall_ids; } add_filter('iteras_override_content_paywall', 'make_paywall_decision', 10, 4);
When you link to other pages, you may be losing the return information needed to redirect the visitors. Send the URL through [iteras-return-to-page] as described above to forward the return information. When an iframe is embedded directly, the return information is inserted automatically, but when you put the iframe on another page and link to that, the iframe needs to know where the visitors come from to be able to return them correctly.
No. But it’s not hard to get one - if you are interested in learning more about ITERAS, please visit iteras.dk and contact us.
You will need to do a custom integration. The plugin attaches to the the_content hook in Wordpress which in some situations is called mutiple times by 3rd party plugins. In this case set the "Paywall integration method" to "Custom" and add the paywall code manually to the theme or plugin you are using. This can be done either by wrapping the post body with the shortcode [iteras-paywall-content]...[/iteras-paywall-content] or by calling Iteras::get_instance()->potentially_paywall_content(...) which returns the content wrapped with the paywall. Logged in subscribers see truncated preview instead of the full article When server-side validation is enabled, the plugin truncates paywalled content for visitors without a valid access pass. If a page cache in front of WordPress stores that truncated response under the post URL, every subsequent visitor - including paying subscribers - will see the truncated version. To prevent this, the plugin sends no-cache signals (Cache-Control: no-cache, private, no-store, max-age=0, must-revalidate, Pragma: no-cache, Vary: Cookie, X-LiteSpeed-Cache-Control: no-cache, X-Accel-Expires: 0) and defines DONOTCACHEPAGE for paywalled posts. The "Prevent caching" setting controls this behaviour and is on by default. If paywalled content is still being cached after upgrading: Run curl -I https://example.com/<paywalled-post>/ and check the response headers. If Cache-Control: private, no-cache, no-store is present, the plugin is doing its job and the cache layer is ignoring the origin response. If those headers are missing, another plugin or theme is stripping them - disable plugins one at a time to find the culprit. If you use Cloudflare, add a Cache Rule that bypasses the cache when the iteraspass cookie is present, or set the Cache Level to "Respect Existing Headers". Cloudflare's default "Cache Everything" page rules can override origin caching directives. If you use Varnish or nginx fastcgi_cache/proxy_cache, configure the cache to either respect origin Cache-Control: private/no-store (most defaults do), or to bypass cache when the iteraspass cookie is present, or to include the iteraspass cookie in the cache key. Make sure the cache does not strip the cookie before forwarding to origin - if it does, even authorized subscribers will receive truncated content. If you must disable the plugin's no-cache signals (for example because your cache is configured to vary on the iteraspass cookie and you want to keep page caching), uncheck "Prevent caching" in the plugin settings. Do not disable server-side validation - that exposes the full paywalled article to anyone with JavaScript disabled. Security issues If you discover a security issue, please contact us. You can also report it through Patchstack.

Sign In / Register

You need to sign in or register to use this feature.