How can I bulk remove a specific word from all product titles?

Hi

Product name example : “Black xxx Print xxx xxx”
I would like to remove “Print” word from every product title as bulk edit.
There are 400+ products as named “.. print..”

I use Prestige Theme and I couldn’t even find the escape, variant.title in my store’s code page.

Could you please help me about it?

I appreciated.

Hi @artronauts ,

I do not have access to Prestige theme unfortunately. Is this a variant title or a product title? You can use the logic below

{{ product.title | remove: "Print" }}

or if it is a variant title, depending how the theme assign the variable variant, you can refer to the code below

{{ variant.title | remove: "Print" }}

Hi @artronauts ,

Please go to product-item.liquid file, find ‘product.title’ and change code:

product.title

=>

product.title | replace: "Print", ""

Hope it helps!

Thank you both!

Hi @LitCommerce @made4Uo ,

On the homepage product titles look without print word but in every product page I see the print word included to product title.

How can I solve it?

Hi @artronauts ,

Please go to main-product.liquid file, find ‘product.title’ and change code:

product.title

=>

product.title | replace: "Print", ""

Hope it helps!