Adding head code loses beaver builder functionality

I am creating a site that syndicates product from another site. When I add the code in the customizer (head code) it works for the syndication but all my beaver builder functionality is lost. If I remove the code it works again. This is also the issue with any third party plugins I have installed to insert the head code.

Here is the code below.

<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="https://www.fireplaces.com/syndication/builder/templates/js/HHTSyndicationJS.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" media="screen" href="https://www.fireplaces.com/syndication/builder/templates/css/HHTSyndicationCSS.css" />

<!--This is the JSON configuration that tells the system how to render your selections -->
<div id="site_configuration">{"SiteKey":"0013000000MqU59AAF","Implementation":"AdHoc","CatalogIncludeCoupon":false,"CatalogIncludeContact":false,"CustomIncludeProductFilter":false,"CustomIncludeCoupon":false,"CustomIncludeContact":false,"CustomBrandFilter":null,"CurrentUrl":null,"CurrentDomain":null,"HHTDomain":"https://www.fireplaces.com","IsMultipage":false,"Filters":null,"AdHocProducts":["{1729BFE2-76D8-4518-8E6A-A1B5562701AA}","{9F3FC4B8-F27D-41D4-A6EC-7B330C4A9290}","{B192B759-53A8-4E1B-AA18-A2535B6EB919}","{66522DA7-6257-4B17-937C-603CFA28A24A}","{731D771D-00A3-4F14-B81E-91C6D7D22638}","{E0A78803-AC3D-4C0B-BC6D-6EEF35175268}","{F2A6ED8B-9910-43BD-BBF4-53604C19FCBA}","{1EE703ED-E46E-4683-B175-306F399509DF}","{43E3DDED-19F4-458F-A43C-4749BDE1698A}","{AE63CAE0-8AD4-4225-B828-F11DF322ACA3}","{07AEB94C-5D7F-4BBA-A100-A97919009B90}","{B363C4E0-7F17-46D9-9C92-39E934A652F3}","{9EE965C8-818E-4138-967E-6E76934B5186}","{54AB86A9-F4A9-4A9C-8006-4F6E9D7333B6}"],"ADHOCIncludeCoupon":false,"ADHOCIncludeContact":false,"CustomCategory":null}</div>

<script>
    $j(document).ready(function () {
        HHT.LoadConfig();
        SyndicationUtility.loadHtml();
    });
</script>

Thanks in advance

Yes your first line is adding jQuery, which BB already uses and it uses the WP bundled version. So adding ANOTHER version of jQuery will cause issues.

Perfect thanks so much that was it :slight_smile: