We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using "YITH WooCommerce Request A Quote" the images and quantity fields do not load after their AJAX task is run.
A solution was given to load the images after a delay, since there are no built in triggers we can utilize:
function yith_raq_image_fix() { ?> <script type="text/javascript" charset="utf-8"> jQuery(document).ready(function($) { setTimeout( function() { var images = $('#yith-ywraq-form td.product-thumbnail a img'); images.each(function () { var data_src = $(this).attr('data-src'); $(this).removeClass('lazy-load'); $(this).attr('src', data_src); }); }, 2000 ); //end settimeout }); </script> <?php } add_action( 'wp_footer', 'yith_raq_image_fix',999999 );
https://wordpress.org/plugins/yith-woocommerce-request-a-quote/
The text was updated successfully, but these errors were encountered:
@spencerfinnell what's the best way to contact you? Wanna pick your brain for a minute. I don't mind paying for your time. Please.
Sorry, something went wrong.
No branches or pull requests
Using "YITH WooCommerce Request A Quote" the images and quantity fields do not load after their AJAX task is run.
A solution was given to load the images after a delay, since there are no built in triggers we can utilize:
https://wordpress.org/plugins/yith-woocommerce-request-a-quote/
The text was updated successfully, but these errors were encountered: