Category: eCommerce
eme Configurator JSON FAQ
Socket JSON FAQ
Davit Homepage JSON FAQ
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
Verzend mogelijkheden weghalen bij gratis verzenden behalve ophalen op locaite
function custom_hide_shipping_when_free_shipping_is_available( $rates, $package ) { $free_shipping_exists = false; $local_pickup_exists = false; // Check if Free Shipping and/or Local Pickup exist foreach ( $rates as $rate_key => $rate ) { if ( ‘free_shipping’ === $rate->get_method_id() ) { $free_shipping_exists = true;…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
Show and Save Custom Taxonomy On the Vendor Product Edit Form
/* WCV – Show and save product brand taxonomy on the product edit form */ add_action( ‘wcv_after_product_details’, ‘wcv_product_brand_select2’ ); /** * Add the Brands taxonomy to the vendor product edit form. * * @param int $object_id The post ID. */…Continue reading