I want to disable displaying page title in the header but I want to display breadcrumbs. Also I’d like to change the way they are displayed (different text instead of “You are here” and different sign instead of “/”). How can I do that?
Hi Signum!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.title_container .main-title { display: none; }
Then go to Enfold/framework/php folder and open class-breadcrumb.php and search/change “You are here” then find following line
$separator = '<span class="sep">' . $separator . '</span>';
and change it to
$separator = '<span class="sep"> - </span>';
Cheers!
Yigit