2016-06-21 4 views

답변

0

여기에서 Branch.io의 Alex : 현재 스마트 배너에 대한 WordPress 플러그인이 없지만 좋은 생각입니다!

그동안 Google에서는 사용할 수있는 customization options 번을 보유하고 있으며 배너에 custom CSS styles을 적용 할 수도 있습니다.

편집

단순히 배너의 높이가 자신을 위해를 통하여 느낄 수있을 것이다 해킹의 비트이지만 출발점으로이 코드를 사용할 수 있습니다 조정하려면 (에서 높이를 증가 예를 들어 76px에서 90px까지) :

<style> 
     #branch-banner-iframe { 
      height: 90px !important; 
     } 
    </style> 

    <script type="text/javascript"> 
     (function(b,r,a,n,c,h,_,s,d,k){if(!b[n]||!b[n]._q){for(;s<_.length;)c(h,_[s++]);d=r.createElement(a);d.async=1;d.src="https://cdn.branch.io/branch-latest.min.js";k=r.getElementsByTagName(a)[0];k.parentNode.insertBefore(d,k);b[n]=h}})(window,document,"script","branch",function(b,r){b[r]=function(){b._q.push([r,arguments])}},{_q:[],_v:1},"addListener applyCode banner closeBanner creditHistory credits data deepview deepviewCta first getCode init link logout redeem referrals removeListener sendSMS setIdentity track validateCode".split(" "), 0); 
     branch.init('key_live_xxxxxxxxxxxxxxxxxxxxx'); 
     branch.banner({ 
      icon: 'http://icons.iconarchive.com/icons/wineass/ios7-redesign/512/Appstore-icon.png', 
      title: 'Branch Demo App', 
      description: 'The Branch demo app!', 
       customCSS: '.content { height: 90px !important; } .right { height: 77px !important; padding-top: 29px !important; } .left { height: 77px !important; } #branch-banner-close { top: 21px; } #branch-banner .icon img { margin-top: 7px; }' 
     }, {}); 
    </script> 
+0

그러나 맞춤 설정 옵션을 사용하면 배너 크기를 조정할 수있는 옵션이 제공되지 않습니다. 브랜치에서 제공되는 코드 조각을 제공 할 수 있다면 도움이 될 것입니다. – sesha

+0

@sesha 일부 코드로 내 대답을 편집했습니다! –