C
by Automattic
3 (1 reviews)
Chatrix
Matrix client for WordPress.
Tested up to WP 6.8.5 (Current: 6.9.4)
v0.9.2
Current Version v0.9.2
Updated 11 months ago
Last Update on 17 Apr, 2025
Refreshed 6 hours ago
Last Refreshed on
Rank
#25,797
—
No change
Active Installs
20+
-25.9%
KW Avg Position
37
—
No change
Downloads
5.6K
+5 today
Support Resolved
0%
—
No change
Rating
60%
Review 3 out of 5
3
(1 reviews)
Next Milestone 30
20+
30+
1,905
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 2 more installs to reach 30+
Rank Changes
Current
#25,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
3.0
1 reviews
Overall
60%
5
0
(0%)
4
0
(0%)
3
1
(100%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 1 of 1| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| matrix | 37 | — | Tag | 2 days 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
- 0.9.2
- Last Updated
- Apr 17, 2025
- Requires WP
- 6.0+
- Tested Up To
- 6.8.5
- PHP Version
- 7.4 or higher
- Author
- Automattic
Support & Rating
- Rating
- ★ ★ ★ ☆ ☆ 3
- Reviews
- 1
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,716
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#953
SureMail – SMTP and Email Logs Plugin with Amazon SES, Postmark, and Other Providers
200K+ installs
#260
Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin
200K+ installs
#261
MW
MW WP Form
200K+ installs
#266
Frequently Asked Questions
Common questions about Chatrix
This plugin can be used in two distinct ways: By adding a block to a page through the block editor By selecting pages in which a popup will be displayed. You configure this through Settings -> Chatrix.
Yes. Instead of configuring the popup through Settings -> Chatrix, you can configure it through code, by using the chatrix_instances filter: // functions.php add_filter( 'chatrix_instances', function ( array $default_instances ) { // The key is an instance_id, the value array is the config for that instance. // Set 'pages' to an array of the ids of the pages which should show chatrix. // You can also set 'pages' to 'all' which results in that instance always being used. // Only one instance can be shown on a given page. return array( 'foo' => array( 'homeserver' => 'https://foo.com', 'room_id' => '!id:foo.com', 'pages' => 'all', ), 'bar' => array( 'homeserver' => 'https://bar.com', 'room_id' => '!id:bar.com', 'pages' => array(1, 2, 3), ), ); } );
The plugin will respect the login methods configured on the Matrix homeserver. For example, if the homeserver has both password and SSO login enabled, both options will be available to the user. In light of the plan for Matrix to replace their user management with Open ID Connect (OIDC), we recommend to use a Single-Sign On (SSO) flow by configuring Open ID Connect login on Synapse and use the OpenID Connect Server WordPress plugin. The flow will then be as follows: When logging into your homeserver, it will redirect you to your own WordPress login page and ask you to authorize the login by the click of a button, and then relay your information to the homeserver. You'll be redirected back to your WordPress page and Chatrix will receive the login information and you can start chatting. Later, when Matrix makes the switch to OIDC, you are already prepared and can continue to use this setup.