Privacy Policy

At Zack’s Custom Grills, we are committed to protecting your privacy and ensuring the security of your personal information. This Privacy Policy outlines how we collect, use, and safeguard the information you provide to us when you visit our website or interact with our content.

Information We Collect:

  • Personal Information: When you voluntarily submit information to us through contact forms, comments, or newsletter sign-ups, we may collect personal information such as your name and email address.
  • Non-Personal Information: We may also collect non-personal information automatically through cookies and similar technologies, including IP addresses, browser type, and browsing preferences.

How We Use Your Information:

  • To Improve User Experience: We may use the information you provide to personalize your experience on our website, respond to your inquiries, and provide support.
  • To Send Updates: If you subscribe to our newsletter, we may use your email address to send you updates, promotions, and other relevant content.
  • To Analyze Usage: We may use non-personal information to analyze trends, track user engagement, and improve our website’s functionality.

Data Security:

We take reasonable precautions to protect your information from unauthorized access, disclosure, or alteration. However, no method of transmission over the internet or electronic storage is 100% secure, and we cannot guarantee absolute security.

Third-Party Links:

Our website may contain links to third-party websites, plugins, or services. We are not responsible for the privacy practices or content of these third parties. We encourage you to review the privacy policies of any third-party sites you visit.

Changes to This Policy:

We reserve the right to update or amend this Privacy Policy at any time. Any changes will be posted on this page, and your continued use of the site after the posting of modifications constitutes your acceptance of the revised policy.

Contact Us:

If you have any questions or concerns about this Privacy Policy, please contact us at [email protected].

// JavaScript for search functionality document.addEventListener('DOMContentLoaded', function () { const searchInput = document.getElementById('searchInput'); // Event listener for search input searchInput.addEventListener('input', function () { const searchQuery = searchInput.value.toLowerCase(); const posts = document.querySelectorAll('.post'); // Loop through each post posts.forEach(function (post) { const postTitle = post.querySelector('h2').textContent.toLowerCase(); const postContent = post.querySelector('p').textContent.toLowerCase(); // If search query is found in post title or content, display the post, otherwise hide it if (postTitle.includes(searchQuery) || postContent.includes(searchQuery)) { post.style.display = 'block'; } else { post.style.display = 'none'; } }); }); });