http://streetlook.stronazen.pl/
add something to wishlist first, then go to wishlist page and try to find remove button.
Translations (neighborhood + woocommerce) attached.
Need to add extra code in my case – function.php
function translate_text($translated) {
$translated = str_ireplace(‘Your Order’, ‘Twoje zamówienie’, $translated);
$translated = str_ireplace(‘Payment Method’, ‘Metoda płatności’, $translated);
$translated = str_ireplace(‘Returning customer?’, ‘Masz już swoje konto?’, $translated);
$translated = str_ireplace(‘Login here’, ‘Zaloguj się’, $translated);
$translated = str_ireplace(‘Share on’, ‘Udostępnij’, $translated);
$translated = str_ireplace(‘Product Name’, ‘Nazwa Produktu’, $translated);
$translated = str_ireplace(‘Stock Status’, ‘Magazyn’, $translated);
$translated = str_ireplace(‘In Stock’, ‘W magazynie’, $translated);
$translated = str_ireplace(‘Actions’, ‘Akcja’, $translated);
$translated = str_ireplace(‘Edit address’, ‘Edytuj adres’, $translated);
$translated = str_ireplace(‘Product successfully removed.’, ‘Produkt usunięty’, $translated);
return $translated;
}