コミュニティアチーブメントバーを展開する。

Need to disable all Activities/Test just for my current session

Avatar

Level 3

Hi, Is there a simple way to temporarily disable all target activities for single page or session in any browser?

 

Dev team wants to test same thing which we are delivering through Target and they are asking to disable it but the same activity is running for all in production environment.

トピック

トピックはコミュニティのコンテンツの分類に役立ち、関連コンテンツを発見する可能性を広げます。

4 返信

Avatar

Level 3

Using the browser inspector, try blocking the delivery or interact call by selecting "Block request URL"

Avatar

Level 3

target calls are also interact call.

we are using web SDK and target is enabled within that only. is there any other way?

Avatar

Community Advisor

Hi @rudraWiley,

 

To disable Adobe Target activities on a single page using the Web SDK, you can leverage the "renderVisualPersonalizationDecisions" setting within your Web SDK configuration, setting it to "false" for the specific page where you want to prevent Target from rendering personalized content; essentially, this tells the SDK not to apply any Target decisions on that page load.

 

Key points to remember:
  • Configuration setting:
    Access the relevant "Send Event" action in your data collection setup and locate the "Render visual personalization decisions" checkbox, then untick it. 
     
  • Control over rendering:
    By disabling this option, you maintain full control over when and how to render personalized content using custom code if needed. 
     
  • SPA considerations:
    When working with Single Page Applications (SPAs), carefully manage the "Send Event" actions to ensure you only disable Target rendering on the desired pages. 
     
    I hope this help you.

Avatar

Level 3

@rudraWiley perhaps I misunderstood your goal, I took it as that's what you wanted to happen (i.e. disable Target) in a given browser session.