Beschreibung
Füge einfach einen Matrix-Client zu WordPress-Seiten hinzu, entweder über den Block-Editor oder als Popup.
Feedback ist willkommen
Wenn du Feedback oder Fragen zu Chatrix hast, wende dich bitte an die Plugin-Maintainer unter #chatrix:matrix.org.
Screenshots
Blöcke
Dieses Plugin unterstützt 1 Block.
- Chatrix Matrix client
FAQ
-
Wie kann ich dieses Plugin auf meiner Website installieren?
-
Dieses Plugin kann auf zwei verschiedene Arten verwendet werden:
- Durch Hinzufügen eines Blocks zu einer Seite mit dem Block-Editor
- Durch Auswahl von Seiten, auf denen ein Popup angezeigt werden soll. Du kannst dies über
Einstellungen -> Chatrix
konfigurieren.
-
Gibt es eine flexiblere Möglichkeit, das Popup zu konfigurieren?
-
Ja. Anstatt das Popup über
Einstellungen -> Chatrix
zu konfigurieren, kannst du es über den Code konfigurieren, indem du den Filterchatrix_instances
verwendest:// 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), ), ); } );
-
Wie kann ich WordPress-Benutzerkonten für die Registrierung und Anmeldung auf dem Matrix-Homeserver konfigurieren?
-
Das Plugin berücksichtigt die auf dem Matrix-Homeserver konfigurierten Anmeldemethoden. Wenn beispielsweise auf dem Homeserver sowohl die Passwort- als auch die SSO-Anmeldung aktiviert sind, stehen dem Benutzer beide Optionen zur Verfügung.
Angesichts des Plans von Matrix, die Benutzerverwaltung durch Open ID Connect (OIDC) zu ersetzen, empfehlen wir die Verwendung eines Single-Sign On (SSO)-Ablaufs durch die Konfiguration von Open ID Connect Login auf Synapse und die Verwendung des OpenID Connect Server WordPress Plugins.
Der Ablauf ist dann wie folgt: Wenn du dich bei deinem Homeserver anmeldest, wirst du auf deine eigene WordPress-Anmeldeseite umgeleitet und aufgefordert, die Anmeldung durch Anklicken eines Buttons zu autorisieren und dann deine Informationen an den Homeserver weiterzuleiten. Du wirst zurück auf deine WordPress-Seite geleitet und Chatrix erhält die Anmeldeinformationen und du kannst mit dem Chatten beginnen.
Wenn Matrix später auf OIDC umsteigt, bist du bereits vorbereitet und kannst diese Konfiguration weiter verwenden.
Rezensionen
Mitwirkende & Entwickler
„Chatrix“ ist Open-Source-Software. Folgende Menschen haben an diesem Plugin mitgewirkt:
Mitwirkende„Chatrix“ wurde in 2 Sprachen übersetzt. Danke an die Übersetzerinnen und Übersetzer für ihre Mitwirkung.
Übersetze „Chatrix“ in deine Sprache.
Interessiert an der Entwicklung?
Durchstöbere den Code, sieh dir das SVN Repository an oder abonniere das Entwicklungsprotokoll per RSS.
Änderungsprotokoll
0.9.1
- We now don’t enqueue scripts in embeds #249
- It is now possible to disable service worker at runtime #243
0.9.0
- Chatrix is now a single-session client. The session picker is no longer displayed [#239]. This fixes #236 #224 #200.
0.8.3
- Improve the view for rooms that are you not a member of (Upgraded our Hydrogen’s fork to latest)
0.8.2
- Fix issues with single-room mode and guest login [#222]
0.8.1
- Correctly remember last url when multiple blocks are on the same page [#217]
0.8.0
- Fix issue when chatrix plugin is not installed in the default location [#205]
- Fix issue with z-index of the popup [#207]
- Fix issue that prevented navigating away from the unknown room screen [#213]
- Allow multiple blocks on the same page or on different browser tabs (behind feature flag, still unstable) [#214]
0.7.1
- Fix button text from ‚Login‘ to ‚Log In‘
- Meta changes for WP.org plugins repo
0.7.0
- Implement Room Previews (Peeking) functionality [#199]
- Disable restoration to last screen when in Single room mode [#196]
- Switch to our Hydrogen’s fork (ahead of v0.3.8) as dependency which includes un-merged upstream contributions
- Fix query params in SSO
- Allow create room screen to be closed on smaller width screens
- Ensure Service worker is started before anything else
- Fix bug in normalization of homeserver
- Room Previews (Peeking) support
- Fix loading of messages & timelines in some cases
0.6.0
- Support for multiple blocks on the same page [#175]
- Support room alias in configuration [#179]
- Fixed a bug where port wasn’t allowed in homeserver in configuration [#184]
- Provide a filter to choose to not load the logout script if required [#165]
0.5.1
- Fix issue that caused popup configuration to be ignored [#173]
0.5.0
- Logout and delete data when user logs out of WordPress [#150, #153]
- Improvements to single room mode [#151]
- Add a Settings entry to the options menu of the room
- Closing the Settings screen navigates to configured
roomId
- Closing the Room (timeline) screen navigates to session picker
- Hide the left panel completely
- Fix issue that caused Chatrix to not load in certain conditions [#160]
- Allow setting a unit for certain styling options (previously was always
px
) [#154]
0.4.0
- Prevent data corruption when more than one Chatrix instance (block or Popup) is active, either in multiple browser tabs or windows, or in the same page [#75]
- Allow setting the height of the block from the block editor [#135]
- Allow styling the block’s border from the block editor [#139]
- Styling and layout improvements and fixes in pre-session screens (session selection, login, logout) [#134]
- Reduce plugin size by 50%, from 12MB to 6MB [#143]
- Update to Hydrogen 0.3.5
- Fix issue that prevented opening rooms with slashes in the room ID [#451]
- Improve date headers in room timeline [#938]
- Provide basic UI to join room [#870]
- Fix an error that can stop sync [#885]
- Fetch missing e2ee devices when verifying message sender [#913]
- Fix message verification not working in rooms where we haven’t sent a message yet [#920]
- Various maintenance fixes
0.3.9
- Initial public release