Skip to content

shipping

Auto Added by WPeMatico

Failed to open file composer.json. Please verify the archive error in commercedeveloper

My composer file is below “name”: “mymodule/module-shipping”, “description”: “Description of module”, “type”: “magento2-module”, “version”: “1.0.0”, “license”: [ “OSL-3.0” ], “require”: { “php”: “>=7.4”, “magento/framework”: “~100.0.4” }, “autoload”: { “files”: [ “registration.php” ], “psr-4”: { “Mymodule\Shipping\”: “” } } }“` My… Read More »Failed to open file composer.json. Please verify the archive error in commercedeveloper

Jquery not triggering for the change(function())

jQuery(‘input[name^=”ko_unique_”]’).trigger(“change”); jQuery(‘input[name^=”ko_unique_”]’).change(function() { var v = jQuery(this).val(); console.log(v); if(v == ‘simpleshipping_simpleshipping’){ console.log(‘check’); jQuery(‘#deliv-hold’).show(); } else{ jQuery(‘#deliv-hold’).hide(); } }); The above-mentioned code is working fine on the console but when it is used in js. it does not execute after the… Read More »Jquery not triggering for the change(function())