When adding a 1 color or 2-color logo to a check, it is not adding the associated Logo item and charge to the cart. Check whether we have added any condition that realted to liquid pixel integration for logo 1c associate item. so we need to give some condition to show the logo 1c item need to show in the cart page . Actullay we need to check for the item we need to give some condition like if it was there then need to show the item
if (currentID === 'custcol_tag_logo_option') {
pdp.setOption('custcol_tag_logo_option', value);
if (value === '3') {
pdp.setOption('custcol_tag_logo_option_item', '13974');
}
else if (value === '1') {
pdp.setOption('custcol_tag_logo_option_item', '13974');
}
else{
pdp.setOption('custcol_tag_logo_option_item', '');
}
}

