Home Page JSON FAQ

{ “@context”: “https://schema.org”, “@type”: “FAQPage”, “mainEntity”: [ { “@type”: “Question”, “name”: “What does Easily Moved Equipment specialize in?”, “acceptedAnswer”: { “@type”: “Answer”, “text”: “Easily Moved Equipment specializes in manufacturing high-quality, lightweight aluminum gantry cranes and portable lifting equipment for industrial…Continue reading

2200 JSON FAQ

{ “@context”: “https://schema.org”, “@type”: “FAQPage”, “mainEntity”: [ { “@type”: “Question”, “name”: “What is the lifting capacity of the 2200 Series Aluminum Gantry Crane?”, “acceptedAnswer”: { “@type”: “Answer”, “text”: “The 2200 Series Aluminum Gantry Crane has a rated lifting capacity of…Continue reading

3D Viewer Tracking

document.addEventListener(‘DOMContentLoaded’, function() { const viewerCanvas = document.querySelector(‘.userInput canvas’); if (!viewerCanvas) return; // track when user starts grabbing viewerCanvas.addEventListener(‘mousedown’, function() { if (typeof gtag === ‘function’) { gtag(‘event’, ‘grab_start_3d’, { event_category: ‘Viewer 3D’, event_label: ‘mousedown’ }); } }); // track when…Continue reading

Custom Tax Display Settings for Regular Prices by Specific Wholesale Roles

// Display regular price excluding tax for specific user role add_filter(‘woocommerce_get_price_html’, ‘custom_display_regular_price_ex_tax_for_role’, 100, 2); function custom_display_regular_price_ex_tax_for_role($price_html, $product) { // Only run on frontend and for logged-in users if (is_admin() || !is_user_logged_in()) return $price_html; // Get current user and their roles…Continue reading