mukesh.l
Forum Replies Created
-
yes if you are use normally then it work perfect but it create problem because of you added jQuery steps (https://www.jquery-steps.com) so accourding to that you need to change jquery so it work perfect.
Thanks
jQuery(document).ready( function($) { $(".thumbnail-quantity ").bind('mouseleave',function() { // Get values from input box var new_qty = $(this).val(); var step = $(this).attr( 'step' ); var max = $(this).attr( 'max' ); var min = $(this).attr( 'min' ); // Adjust default values if values are blank if ( min == '' ) min = 1; if ( step == '' ) step = 1; // Calculate remainder var rem = ( new_qty - min ) % step; // Max Value Validation if ( +new_qty > +max && max != '' ) { new_qty = max; // Min Value Validation } else if ( +new_qty < +min && min != '' ) { new_qty = min; // Step Value Value Validation } else if ( rem != 0 && !isNaN( rem ) ) { new_qty = +new_qty + (+step - +rem); console.log( rem ); } $(this).val( new_qty ); $(this).siblings( ".button" ).attr( "data-quantity", new_qty ); }); });
This code is not working in your system so you need to find out where is the problem and for that if you nees help then told me
Thanks
Got the solution simply add “button” class in input like this
<input type="number" value="1" class="thumbnail-quantity quantity button" name="thumbnail-quantity" step="1" min="1">
simply add button class and check it out
it’s jquery problem so you need to check with input class in jquery
it showing this in console
“NetworkError: 404 Not Found – https://www.proefhetwestelijkhandelsterrein.nl/custom_js/jquery.steps.min.js”
jquery…..min.js
“NetworkError: 404 Not Found – https://www.proefhetwestelijkhandelsterrein.nl/custom_js/jquery.steps.js”
jquery.steps.js
“NetworkError: 404 Not Found – https://www.proefhetwestelijkhandelsterrein.nl/custom_js/css/jquery.steps.css”
jquery.steps.css
“NetworkError: 404 Not Found – https://www.proefhetwestelijkhandelsterrein.nl/custom_js/jquery.steps.min.js”can you plz add this js and css.
Hello WietzeKleisterlee
can you plz share your site url so check what is the problem
Thanks
Forum: Plugins
In reply to: [Secure Custom Fields] How to use ACF field as part of an arrayHello Treebeard
can you plz show the url and then show me what you need because if you want acf field in array then it is possible but i am not understood your requirment so give more information.
Thanks
Forum: Plugins
In reply to: [WordPress Importer] Fatal Errorif you get solution then post here. if anyone get this issue then he / she get result.
Forum: Plugins
In reply to: [WordPress Importer] Fatal Errorit have theme error check comments in theme support.
lots of error like you have.
Forum: Plugins
In reply to: [WordPress Importer] Fatal Errorit is hard to check all plugin here can you plz search this word “class WXR_Parser” and tell me where you find perfect this word and tell me so i add that plugin and check. ok?
Forum: Plugins
In reply to: [WordPress Importer] Fatal Errorcan you tell me which plugin and theme you are use because this class is declare in other file so need to check other plugin file?
Thanks
Forum: Plugins
In reply to: [WooCommerce] Problem with Filer by Price pluginok it’s strange for wc and wp
Forum: Plugins
In reply to: [WordPress Importer] Fatal ErrorHello Selina
It means you’ve already created a class.
For instance: class WXR_Parser {} // some code here class WXR_Parser {}
That second Foo would throw the error.
You need to check class_exists(‘WXR_Parser’) function before you declare.
Thanks
Forum: Plugins
In reply to: [WooCommerce] Problem with Filer by Price pluginyup i understood and i told you before you need to check all product price. great problem solve
Thanks
MukeshForum: Plugins
In reply to: [WooCommerce] Problem with Filer by Price pluginohhh so how can i check in your system there is some bug but how i identify? is there any way?