Removing Breadcrumbs

kingmitch

Junior Member
Joined
Apr 16, 2015
Messages
142
Reaction score
24
I'm trying to remove the page titles in the bar under the heading I believe they're called breadcrumbs. Not having any luck checked throught many wordpress support threads with no luck. I'm hoping someone has some experience with that here.
 
Easy: PM me actual website URL and ill sort it out for you in no time

Hard: Post your website page code and i will give you exact procedure for removing those headlines,breadcrumbs..

Go to your website page with headlines/breadcrumbs that you wanna remove >> F12 in Chrome >> Find text starting with <html.. > in newly open bottom window, <html> tag is at the top of the screen..cant miss it >> right click on <hrml..> section and COPY >> paste full code here: http://pastebin.com/ and give us your pastebin link..

Before posting to pastebin ..copy <html> section to your notepad and remove your website URL,keywords,text..all the things you don't wanna reveal
 
I suggest you use a child theme http://codex.wordpress.org/Child_Themes or use css custom plugin like this: https://wordpress.org/plugins/simple-custom-css/ if you will customize your theme.

Add the code in your child theme's style.css or using the plugin mentioned above.

.woocommerce-breadcrumb {
display: none;
}Let me know if it helps!
smile.png

Take care,

I'll try that and let you know :)

Learn some css and you will know how to do those edits in the future.

http://www.w3schools.com/css/default.asp

Definitly will come in handy
 
It wasn't breadcrumbs I was trying to get rid of it was a menu. To get rid of the menu I had to create a menu and have nothing on it if that makes sense.
 
It wasn't breadcrumbs I was trying to get rid of it was a menu. To get rid of the menu I had to create a menu and have nothing on it if that makes sense.

Oh my bad, if that was your problem. Try to learn CSS on W3SCHOOLS, mostly editing menu is not that difficult. Or look for any tutorials on youtube about your problem.
 
Back
Top