I previously added a line item property to my product, but I would like to update it. The problem is, I don’t know where this code is!
This is the line of code for the text box:
<p class="line-item-property__field">
<label for="second-color">Second Color</label>
<input id="second-color" type="text" name="properties[Second Color]">
</p>
And here is the product page: https://www.merakaiofficial.com/collections/bonnets/products/custom-reversible-satin-bonnet
I’ve checked product.liquid but I didn’t see it. This line item property was create for this product as well as another one.
Hi @merakaiofficial ,
You can follow the instruction below:
- Go to Online Store->Theme->Edit code
- Asset->/theme.scss->paste below code at the bottom of the file:
.line-item-property__field {
display: none;
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
I would like to keep the kine item, I just need to find it to update it. Do you know where this code might be?
Hi @merakaiofficial ,
Maybe “product-customizable-template.liquid” file.
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.