0
0

More than 1 year has passed since last update.

Zoho SalesIQのチャットウィジェットを特定のページで表示させないようにする

Posted at

設定では実現できなかったので、JSを使って制御する

<script type="text/javascript">
	$zoho.salesiq.ready=function(embedinfo){
		if((window.location.href == "URL1") || (window.location.href =="URL2") || (window.location.href == "URL3") || (window.location.href == "URL4")){
			$zoho.salesiq.floatbutton.visible("hide"); 
		}
	}
</script>

上記のコードを設置すれば実現できる。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0