Accent Marks in capital letters in the wrong spot

I’m using listing Hive to make a website and in UPPERCASE words with accent Marks like Área the accent is hover the letter r instead of Á (same with IMÓVEIS) this happing in Google Chrome and Microsoft Edge, it´s fine in Firefox. Portuguese has a lot of words with accent marks and it doesn’t happen in all of them, for example REFERÊNCIA is ok in all 3 browsers.

Please check the examples in attach

Hi,

Please try this PHP snippet (How to add custom code snippets - HivePress Help Center):

add_filter(
	'style_loader_tag',
	function($tag, $handle, $href, $media){
		if('google-fonts' !== $handle){
			return $tag;
		}
		
		$tag = str_replace($href, $href.'&subset=latin,latin-ext', $tag);
		
		return $tag;
	},
	1000,
	4
);

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