Anonymous User 16453565
(@anonymized-16453565)
Hello, @odedharel
To change the home icon to home text go to your dashboard > Appearance > Editor > on the right side you see “inc” folder
click on that so now you have one drop-down menu and open “breadcrumbs.php” file from it. After Open the file Search
icon-home from that opened file. You get this line
<a href="%s"%s><span class="icon-home"></span><span style="display: none;">%s</span></a>.
Just remove that class from that file.
<a href="%s"%s> %s </a>
Like this. So You can get home as a text and replace the home icon.
Hope this will helps you.
Thanks.
-
This reply was modified 7 years, 8 months ago by
Anonymous User 16453565.
-
This reply was modified 7 years, 8 months ago by
Anonymous User 16453565.
Hello @snehalb890 and thank you for your reply.
Before I posted this message I was checking the files to see if I can override a template, however, since this file is in the inc folder it will not override if I place it in the child theme.
I would like to keep this change even when I update my theme, is this really the only way to go besides running a js to change it on page load? if not, then I hope OceanWP developers add this option.
Thanks again.
Anonymous User 16453565
(@anonymized-16453565)
@odedharel,
You just need to add below CSS code into your additional CSS from theme customizer or you can also add this
code into dashboard > Appearance > Editor > assets > CSS > style.min.css.
.icon-home{display:none!important}
.trail-items .trail-begin a span span:last-child{display:inline-block!important;}
Hope this will helps you.
Thanks.
-
This reply was modified 7 years, 8 months ago by
Anonymous User 16453565.