Skip to main content
Hi,

 

I have tried creating a custom button on opportunities to open our Merchant Center to show deal performance.I created it as a detail page link to display in existing window with sidebar and content source as URL. The link is:

 

https://merchant.livingsocial.com/merchant/impersonation/new?deal_id={!Opportunity.Deal_I_D__c}

 

but for some reason when the button is clicked the section just shows a white page.

 

Any ideas where i am going wrong???

 

 
7 个回答
  1. 2015年10月8日 16:07

    Can you change the button specifications like this - 

    1. Behaviour: Execute JavaScript
    2. Content Source: OnClick JavaScript
    3. JS: 

      window.open(

      "https://merchant.livingsocial.com/merchant/impersonation/new?deal_id={!Opportunity.Deal_I_D__c}",

      "blank"

      );

0/9000