/app/design/frontend/venderName/softtouch/Magento_Catalog/templates/product/view/options/type/select.phtml
<script>
require([
'jquery',
'domReady!'
], function ($) {
$(document).ready(function () {
$('select.product-custom-option').change(function(){
$('option').each(function(){
var selectedOption = $(this).text();
if (selectedOption.indexOf('+') > -1) {
var replaced = selectedOption.replace('+', ' ');
// selectedOption = selectedOption.substring(0, selectedOption.indexOf('+'));
$(this).text(replaced);
} else if (selectedOption.indexOf('-') > -1) {
//selectedOption = selectedOption.substring(0, selectedOption.indexOf('-'));
var replaced = selectedOption.replace('+', ' ');
$(this).text(replaced);
}
});
});
});
});
</script>
<script>
require([
'jquery',
'domReady!'
], function ($) {
$(document).ready(function () {
$('select.product-custom-option').change(function(){
$('option').each(function(){
var selectedOption = $(this).text();
if (selectedOption.indexOf('+') > -1) {
var replaced = selectedOption.replace('+', ' ');
// selectedOption = selectedOption.substring(0, selectedOption.indexOf('+'));
$(this).text(replaced);
} else if (selectedOption.indexOf('-') > -1) {
//selectedOption = selectedOption.substring(0, selectedOption.indexOf('-'));
var replaced = selectedOption.replace('+', ' ');
$(this).text(replaced);
}
});
});
});
});
</script>
No comments:
Post a Comment