Hello, im trying to integrate my site with a online quoting and trip builder tool serving called AVINODE,
Im following the manual but I cant finish the installation wich is pretty simple, but I dont know where to put some code.
This are the steps acording the manual to set up my Broker Link (integration)
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Basic setup
Step 1:
To set up Broker Link you need to edit the HTML code of your website.
Inside the existing <body> tag of your HTML page you must add a <div> tag with an id attribute.
It is in this <div> tag that you must load the Broker Link search form.
…
<body>
…
<div id="avinode-broker-link" />
…
</body>
Step 2:
Inside the existing <head> tag of your HTML page you must add two <script> tags. You can also add an optional <meta> tag with to specify your default locale and an optional <link> tag pointing to a style sheet file. This style sheet file will allow you to personalize your broker link. More information on these tags will follow below.
<head>
…
<meta name="gwt:property" content="locale=CODE" />
<link rel="stylesheet" href="CSS_FILE_PATH" type="text/css" />
<script type="text/javascript" src="http://link.avinode.com/avinode/AvinodeLinkWeb/com.avinode.gwt.brokerlink.BrokerLinkStandardClient/com.avinode.gwt.brokerlink.BrokerLinkStandardClient.nocache.js">
</script>
<script type="text/javascript">
function onAvinodeLinkReady() {
AvinodeBrokerLink.init('USERNAME',
'PASSWORD',
'DIV_ID',
'GOOGLE_API_KEY',
'DEFAULT_CURRENCY',
'LAYOUT');
}
</script>
…
</head>
…
I finished Step 2 , I added the code to header.php ... but I dont know where to put this code:
<body>
…
<div id="avinode-broker-link" />
…
</body>
And now the site give me this error when I open any page:
ERROR
http://wisemillionairejets.com
no such target panel for Avinode content: null
I need help with this please, where can I put the code ??
Here is a link to the manual:
Thank You














