Mglod Posted September 30, 2022 Share Posted September 30, 2022 Hello Everyone, Is it possible to change search engine to include specific ID like in previous version of presta, instead of ID range? Presta 1.7.8.3 Link to comment Share on other sites More sharing options...
Knowband Plugins Posted September 30, 2022 Share Posted September 30, 2022 We have a solution for you, kindly add the below code in js/admin.js window.setTimeout(function() { $('#filter_column_id_product_max').hide(); $('#filter_column_id_product_min').css('width','100%'); $('#filter_column_id_product_min').attr('placeholder','ID'); $("#filter_column_id_product_min").bind('input', function () { var stt = $(this).val(); $("#filter_column_id_product_max").val(stt); }); },1000); It will look like : 1 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now