If your products have vendor names, these vendor names can be shown in product recommendations boxes with minimal effort.
This article required some basic knowledge of CSS.
Navigate to the box designer settings by going to Personalization > Website and click on the Designer button.
In the Designer, click the code icon (
<>
) at the top right.In the CSS editor, add this line of code:
.ls-vendor {
display: block;
}
4. Click Save and Publish in order to activate the changes live on your store.
If you want to put the vendor name above the product title, you will have to add these few lines of CSS in the CSS editor:
.ls-vendor {
order: 1;
}
.ls-title {
order: 2;
}
.ls-price-wrap {
order: 3;
}