Shop

				
					4️⃣ En el área de código, copia y pega este snippet:

php
Copy
Edit
function cambiar_texto_read_more($translated_text, $text, $domain) {
    if ($text === 'Read more' && $domain === 'woocommerce') {
        $translated_text = 'Ver';
    }
    return $translated_text;
}
add_filter('gettext', 'cambiar_texto_read_more', 20, 3);
				
			
Scroll al inicio