Your cart is currently empty.

Return to shop

Select the fields to be shown. Others will be hidden. Drag and drop to rearrange the order.
  • Image
  • SKU
  • Rating
  • Price
  • Stock
  • Availability
  • Add to cart
  • Description
  • Content
  • Weight
  • Dimensions
  • Additional information
Click outside to hide the comparison bar
Compare
What are you looking for in Partdo?
jQuery(function($){ // find first product form and the YITH quote button var $form = $('.woocommerce div.product form.cart').first(); var $quote = $('.yith-ywraq-add-button.show a.add-request-quote-button, .add-request-quote-button.button').first(); if ($form.length && $quote.length) { // If quote is not already inside the form, append it if (!$quote.closest('form').length) { $quote.appendTo( $form ); } } // Also observe for dynamic ajax inserts (some themes load buttons after page load) var observerParent = document.querySelector('.product'); if (observerParent) { var obs = new MutationObserver(function(mutations){ mutations.forEach(function(){ var $q = $('.yith-ywraq-add-button.show a.add-request-quote-button, .add-request-quote-button.button').first(); var $f = $('.woocommerce div.product form.cart').first(); if ($q.length && $f.length && !$q.closest('form').length) { $q.appendTo($f); } }); }); obs.observe(observerParent, { childList: true, subtree: true }); } }); -- If you want to link a JavaScript file that resides on another server (similar to ), then please use the "Add HTML Code" page, as this is a HTML code that links a JavaScript file. End of comment */