$('.product-title').each(function() {
var self = $(this);
self.html(self.html().replace(/#/, '-<br/>'));
});
admin Asked question January 25, 2023
$('.product-title').each(function() {
var self = $(this);
self.html(self.html().replace(/#/, '-<br/>'));
});