Contact Links

The contact link variable will override the default "Contact Us" link located in the footer of your page. If no variable is specified then the default url will be used. You can change the text of the link as well. You also have the ability to add multiple links.

Implementation

The contact link is modified in the footer section of the page. You have two configuration options:

defFooter.outerHTML = wet.builder.footer({
...
    "contactLinks": [{
        "href": "#",
        "text": "Contact Link 1"
    }, {
        "href": "#",
        "text": "Contact Link 2"
    }, {
        "href": "#",
        "text": "Contact Link 3",
        "newWindow": true
    }]
...
});