Untitled Snippet

Home Page History Attention Franchise Dynasty Welcome to the Kansas City Chiefs Fan Page! This is a fan page that I have created and it is going to be going over the Kansas City Chiefs and throughout the page I…Continue reading

IKB BetterDocs – Knowledge Base – Adjustments CSS

/* Author: Sumaiya, Clickup Doc https://app.clickup.com/36636088/v/dc/12y1dr-22535/12y1dr-17435 */ /* Des: This CSS is added to colorizes the active link in the sidebar of the BetterDocs documentation */ .betterdocs-sidebar.betterdocs-sidebar-layout-1 .betterdocs-single-category-wrapper .betterdocs-single-category-inner .betterdocs-articles-list li a.active { color: #3457d5 !important; } /* completed */…Continue reading

dynamic sku display on variable products ( Mihai )

jQuery(document).ready(function($) { // Listen for clicks on the variation items $(‘.variable-items-wrapper’).on(‘click’, ‘li’, function() { // Get the data-value attribute of the selected item var selectedValue = $(this).data(‘value’); // Check if the skuData object is defined and contains the selected SKU…Continue reading

SaleIQ chat bug fix (Mihai)

(function() { let originalTitle = document.title; Object.defineProperty(document, ‘title’, { get: function() { // Remove ‘>’ from the title when accessed return originalTitle.replace(/>/g, ”); } }); })();Continue reading