Add to functions.php in main/child theme Flatsome:
function custom_flatsome_remove_archive_prefix($translated_text, $text, $domain) {
if ($domain !== ‘flatsome’) {
return $translated_text;
}
if (is_category() && strpos($text, ‘%s’) !== false) {
$pos = strpos($text, ‘%s’);
if ($pos !== false) {
$translated_text = substr($text, $pos);
}
}
return $translated_text;
}
add_filter(‘gettext’, ‘custom_flatsome_remove_archive_prefix’, 20, 3);
add_filter(‘gettext_with_context’, ‘custom_flatsome_remove_archive_prefix’, 20, 3);


![[Bình Long, Đồng Nai] Khóa học dựng Web 1:1 cầm tay chỉ việc](https://tinhcau.com/wp-content/uploads/2025/09/khoa-hoc-viec-150x150.png)


