Location: site_wide_header
facebook pixel
Woocommecre Category Fix
jQuery(document).ready(function( $ ){ var checkCategory = jQuery(“body.archive.tax-product_cat .product-category”); if(checkCategory.length > 0){ jQuery(“body”).addClass(“only-products-cat”); } });Continue reading
Woocommecre Category Fix
jQuery(document).ready(function( $ ){ var checkCategory = jQuery(“body.archive.tax-product_cat .product-category”); if(checkCategory.length > 0){ jQuery(“body”).addClass(“only-products-cat”); } });Continue reading
Add ADA Attributes to Main Content
jQuery(document).ready( function($) { $(‘#main-content’) .attr(‘role’, ‘main’) .attr(‘tab-index’, ‘-1’); });Continue reading
Smooth Scrolling for Anchor Links Special Edit
// Delayed scroll to hash (e.g., #book-call) after Calendly and Zoho Forms load document.addEventListener(“DOMContentLoaded”, function () { const targetHash = window.location.hash; function scrollToHash() { if (targetHash) { const el = document.querySelector(targetHash); if (el) { el.scrollIntoView({ behavior: “smooth”, block: “start” });…Continue reading
Pricing Page Customization – CSS
/* Author: Sumaiya , Click up Doc: https://app.clickup.com/36636088/v/dc/12y1dr-22535/12y1dr-24435 */ /* Des: This CSS is added to optmize the feature list “x” icon */ .eb-feature-list-item[data-icon=”fas fa-xmark”] .eb-feature-list-icon-inner { border: 2px solid #f40009!important; /* Add a red border */ } /* Completed…Continue reading
Tooltip Enhancement for Affiliate Text In Feature Single Page
// Author: Sumaiya, Clickup Doc: https://app.clickup.com/36636088/v/dc/12y1dr-22535/12y1dr-24455 // Wait for the DOM to fully load before executing the script document.addEventListener(‘DOMContentLoaded’, function() { // Select the tooltip container element const tooltipContainer = document.querySelector(‘.tooltip-container’); // Select the tooltip text element within the tooltip…Continue reading
Connect site to Google
Feature Page Customization – CSS
/* Author:Sumaiya , Clickup Doc: https://app.clickup.com/36636088/v/dc/12y1dr-22535/12y1dr-25095 */ /* Des: This CSS is added to make this class “feature-sticky-section” sticky */ .feature-sticky-section { position: -webkit-sticky; /* For Safari */ position: sticky; top: 57px; /* Adjust the top offset as needed */…Continue reading