Viewing 2 reply threads
You must be logged in to reply to this topic.
Hi!
Im trying to remove or translate the breadcrumbs in the Default Page Header, but I cant get it to work.
How can I remove or translate the “You are here/” part?
Hello,
You can change the breadcrumbs in these file \includes\view\page_header.php
<ul class="page_parents pull-right">
<li>You are here: </li>
It can’t be translated, we will make it translatable i the next theme updates.
Best regards!
here is how i solved this:
<?php if(ICL_LANGUAGE_CODE==’en’): ?>
You are here:
<?php elseif(ICL_LANGUAGE_CODE==’it’): ?>
Tu sei qui:
<?php elseif(ICL_LANGUAGE_CODE==’de’): ?>
Du bist hier:
<?php elseif(ICL_LANGUAGE_CODE==’ro’): ?>
Te afli aici:
<?php endif;?>
You must be logged in to reply to this topic.