Shop Now
Your Cart

Projects RSS Feed

19 Jun Label machine (back & front) Copy
06 Jun VOLPACK140 PACKING MACHINE
Yasser 47 3628
Project Name:VOLPACK140 PACKING MACHINE.Application:Food Powder filling and packing machine for different types of productsCustomer Challenge:The PLC unit had several defective I/O pins which hindered the operation of the machine and increased faults and maintenance stops, thus decreasing the production net value.Other integrated circuits used to control specific features in the machine were defective which decreased the performance of the machine more and more.Solutions:We replaced the old PLC ..
Showing 1 to 2 of 2 (1 Pages)
document.addEventListener('DOMContentLoaded', function () {// Only show the button when the RFQ form exists on the product page const quotationForm = document.querySelector('#rfq-form-product');if (!quotationForm) { return; }// Prevent duplicate buttons if (document.querySelector('#request-quotation-scroll')) { return; }// Create button const quoteButton = document.createElement('button');quoteButton.id = 'request-quotation-scroll'; quoteButton.type = 'button'; quoteButton.className = 'btn request-quotation-scroll';quoteButton.innerHTML = ' REQUEST QUOTATION';// Smooth scroll quoteButton.addEventListener('click', function (e) {e.preventDefault();const form = document.querySelector('#rfq-form-product');if (!form) { return; }// Offset for sticky header const headerOffset = 120;const position = form.getBoundingClientRect().top + window.pageYOffset - headerOffset;window.scrollTo({ top: position, behavior: 'smooth' });});/* * Try to place it next to the QUESTION button */ const buttons = document.querySelectorAll( 'button, a.btn, .btn' );let questionButton = null;buttons.forEach(function (button) {const text = button.textContent .trim() .toUpperCase();if (text.includes('QUESTION')) { questionButton = button; }});if (questionButton) {questionButton.insertAdjacentElement( 'afterend', quoteButton );return; }/* * Fallback: * put it next to Add To Cart */ const cartButton = document.querySelector('#button-cart');if (cartButton) {cartButton.insertAdjacentElement( 'afterend', quoteButton );}});