Title prefix in bulk

Heiya! is there also away of adding a prefix to the titles in bulk? like if i wanted to add the same word to all items at the start…

All the best

Paul

Yes that would be a good place to write another Javascript to handle it for you.

Yeah a bit of code would be ideal for now…

I am not an expert but this simple JavaScript should do the trick:

function run(){
	for (const listing of selectedListings) {
		var prefix = 'MyPrefix ';
		listing.title = prefix + listing.title;
	}
}

Replace MyPrefix with your own word.

Regards, Kristian

2 Likes

Hey Kristian. Yeah, great thanks for that. Works perfectly

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.