Skip to content

Instantly share code, notes, and snippets.

@BrunoCamarda
Last active October 23, 2019 18:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BrunoCamarda/5dde10e1ffb010fe6ac6283799c3780f to your computer and use it in GitHub Desktop.
Save BrunoCamarda/5dde10e1ffb010fe6ac6283799c3780f to your computer and use it in GitHub Desktop.

Como remover o texto "Powered by BLiP" do seu chatbot

Para remover o texto de branding - "Powered by BLiP" no canto inferior direito da janela do seu BLiP Chat é preciso adicionar a função .withCustomStyle() e definir o estilo da classe .blip-chat-powered .self-end .ma3 como display: none.

<script>
    new BlipChat()
        .withTarget("chat")
        .withCustomStyle(".blip-chat-powered .self-end .ma3 { display: none; }")
        .build();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment