This question has been answered by webandflow. See the first response.
Show the raw MODX source code in the MODX template - where you are calling the chunk
[[$HomeHead?]] <body> [[$pageBody?]] </body> </html>
and what is in HomeHead?This is HomeHead
[[$meta_tags?]]
<!-- Font Awesome stylsheet for icons -->
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/cplate-font/stylesheet.css" type="text/css" charset="utf-8" />
<link href="assets/css/fonts.css" rel="stylesheet" type="text/css">
<link href="assets/css/jquery.maximage.css" rel="stylesheet" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>[[*longtitle]]</title>
<link href='https://fonts.googleapis.com/css?family=La+Belle+Aurore' rel='stylesheet' type='text/css'>
<link href="assets/css/boilerplate.css" rel="stylesheet" type="text/css">
<link href="assets/css/styles-main.css" rel="stylesheet" type="text/css">
<link href="assets/css/nav.auto.css" rel="stylesheet" type="text/css">
<link href="assets/css/weather.css" rel="stylesheet" type="text/css">
<link href="assets/css/pagebottom.css" rel="stylesheet" type="text/css">
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script type="text/javascript" src="assets/js/jquery-ui-1.8.16.custom.min.js"></script>
<script src="assets/js/jquery.tools.min.js"></script>
<script src="assets/js/libs/modernizr-1.7.min.js"></script>
<script src="assets/js/gallery-overlay.js"></script>
<script type="text/javascript" src="assets/js/jquery.prettyPhoto.js"></script><!-- Date Picker -->
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<link href="assets/css/reservationsBox.css" rel="stylesheet" type="text/css">
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script>
$(function() {
$( "#datepicker" ).datepicker();
});
</script>
<!-- End Date Picker -->
<!-- Content Slider (Tesimonials) -->
<script src="assets/js/jquery.bxslider.min.js"></script>
<!-- bxSlider CSS file -->
<link href="assets/css/jquery.bxslider.css" rel="stylesheet" />
<link href="assets/css/testimonials.css" rel="stylesheet" type="text/css">
<!-- End content Slider -->
<link href="assets/css/specialsBox.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="http://anchorsouthmanagement.com/colorbox/colorbox.css" />
<script src="http://anchorsouthmanagement.com/colorbox/jquery.colorbox.js"></script>
<!-- <script>
jQuery(document).ready(function(){
if (document.cookie.indexOf('visited=true') == -1) {
var fifteenDays = 1000*60*60*24*15;
var expires = new Date((new Date()).valueOf() + fifteenDays);
document.cookie = "visited=true;expires=" + expires.toUTCString();
$.colorbox({iframe:true,innerWidth:853,innerHeight:480,href:'http://www.youtube.com/embed/xbuJIHLdTZ8?rel=0&wmode=transparent&autoplay=1'});
}
$(".youtube").colorbox({iframe:true, innerWidth:853, innerHeight:480});
});
</script> -->
<script> <!-- this is for the Colorbox youtube class commented out above-->
jQuery(document).ready(function(){
$(".youtube").colorbox({iframe:true, innerWidth:853, innerHeight:480});
});
</script>
<!-- begin BounceBox in head -->
<script type="text/javascript" src="http://www.anchorsouthmanagement.com/bouncebox-plugin/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="http://www.anchorsouthmanagement.com/bouncebox-plugin/jquery.bouncebox.1.0.js"></script>
<script type="text/javascript" src="http://www.anchorsouthmanagement.com/bouncebox-plugin/script.js"></script>
<script type="text/javascript">
$(document).ready(function () {
var bounceIt = function () {
$('#bbox').bounceBoxShow();
}
window.setTimeout(bounceIt , 2000);
});
</script>
<link href="http://www.anchorsouthmanagement.com/assets/css/bbox.css" rel="stylesheet" type="text/css" />
<!-- end BounceBox -->
<!-- ---------------- Responsive CSS Overrides --------------------------- -->
<link href="http://anchorsouthmanagement.com/assets/css/responsive-overrides-3.css" rel="stylesheet" type="text/css">
[[$Google Analytics?]]
</head>So, the next question is what is in meta_tags and GoogleAnalytics?That was it. I have got to quit working so late. I must have pasted the [homeHead] code into the [metatags]. Thanks for your help guys.
That was it. I have got to quit working so late. I must have pasted the [homeHead] code into the [metatags]. Thanks for your help guys.