Hi,
At home page,,,there is something like that home>blog, above the posts and below the menu. I don’t want to see the blog text here,,, So how to remove it and change it to another text??? Please suggest me any appropriate way to do this,,,
Regards
-
This topic was modified 10 years by
Akif Hameed.
Hi,
I think you are referring to the breadcrumbs. Unfortunately there is no setting to change the text for theme as they will grab the elements of wordpress and the post titles, not custom text. If your page is a blog, then it will display as “blog”. If your homepage is set to your latest posts fro wp settings, then the word blog will be displayed. You can change this by adding your own custom made homepage you can create in visual composer: http://screencast.com/t/OaQ9QsOs52
Then the word ‘blog’ will be replaced by the page title you give to your homepage.
Thank you!
Hi,
I don’t want to use static page or any page on my website homepage. And also I don’t want to see blog (text) there.
Kindly let me know to delete it, tell me if I can through editor or any other.
Regards
Hi,
you can simply replace the word blog with a ‘space’ in the translations section here: http://screencast.com/t/9XJikgqPo
Thanks.
Hi,
Yes it’s working now, thnx. But why you didn’t tell me this in your first reply?
In addition to this let me know how to enable or disable the breadcrumbs on individual pages of my website. Because in the theme panel area the breadcrumbs setting effect on the whole website not on the single or individual pages i.e dynamic or static.
Regards
Akif Hameed
Hi,
Sorry for not explaining things better in the first reply but I did not realize you want to keep the “latest posts” on the homepage and rename the word ‘blog’. (misunderstanding :))
For the breadcrumbs there is no setting to remove them on specific pages, but this can be done with css. You will need the page id you can get from here: http://screencast.com/t/7AIX5pftA and then you can use css like so:
.page-id-1486 .entry-crumbs{
display:none!important;
}
If you want to add more pages to the same code you can do it like so:
.page-id-1486 .entry-crumbs,
.page-id-1487 .entry-crumbs,
.page-id-1488 .entry-crumbs,
.page-id-1489 .entry-crumbs {
display:none!important;
}
Hope this helps.
Thanks.