score:0

there is no any way of removing the jitsi watermark. but you can remove the link behind it.

score:0

you can change the background-image link in css like below

.leftwatermark {
left: 32px;
top: 32px;
background-position: center left;

background-image: url(your-image-url); } // better view

score:0

if you need to hide the watermark of the jitsi meet by using iframe api, what you have to do is to override these attributes which include in the interface_config.js

show_jitsi_watermark: false,
hide_deep_linking_logo: true,
show_brand_watermark: false,
show_watermark_for_guests: false

const options = {
    ...
    configoverwrite: { startwithaudiomuted: true },
    interfaceconfigoverwrite: { disable_dominant_speaker_indicator: true },
    ...
};
const api = new jitsimeetexternalapi(domain, options);

score:2

show_brand_watermark and show_watermark_for_guests can not be overwrite by the client and must be in the server config

you must edit the file interface_config.js

sudo nano /usr/share/jitsi-meet/interface_config.js

and switch to

  • show_brand_watermark: false,
  • show_watermark_for_guests: false,

then, save your file, and restart your browser page.

be careful, this file can be reset to default when your upgrade jitsi on your server. the fix is already asked in the roadmap.


Related Query

More Query from same tag