Jump to content

Eduardo Ecode

Approved members
  • Posts

    4
  • Joined

  • Last visited

    Never

Reputation Activity

  1. Upvote
    Eduardo Ecode got a reaction from andrewatfornax in Banners Repeated/Duplicated When Using Single Page Call   
    I found this solution, works fine: 
    <script> var OA_zones = { 'zone-5-1': 5, 'zone-5-2': 5 }; </script> <script src="//reviveserver.com/www/delivery/spcjs.php?block=1"></script> <script> OA_show('zone-5-1'); OA_show('zone-5-2'); </script>
  2. Upvote
    Eduardo Ecode reacted to renato_webquest in How to avoid duplicate ads with Single Page Call   
    And how would you suggest to load two banners from the same zone sequentially (without repeating) using the traditional Javascript tag? Do I need to call the whole snippet twice or is there a query string I can use?
    For instance, below you can find how I'm able to accomplish what I need with either ASYNC JS or SPC:
    ASYNC JS <ins data-revive-zoneid="5" data-revive-block="1" data-revive-id="12decfb34af12a3d78db95553aa9a274"></ins> <ins data-revive-zoneid="5" data-revive-block="1" data-revive-id="12decfb34af12a3d78db95553aa9a274"></ins> <script async src="//reviveserver.com/www/delivery/asyncjs.php"></script>SPC <script> var OA_zones = { 'zone-5-1': 5, 'zone-5-2': 5 }; </script> <script src="//reviveserver.com/www/delivery/spcjs.php?block=1"></script> <script> OA_show('zone-5-1'); OA_show('zone-5-2'); </script>Thank you in advance.
    Renato.
×
×
  • Create New...