How to hide breadcrumbs from all pages in WordPress - wordpress

I have been trying to remove this breadcrumb feature from my WordPress site but don't know how to do. Please help. It shows in every page.
I want to remove from all pages.

You can use this CSS:
nav.woocommerce-breadcrumb {
display: none;
}
This can be added via a child theme or within your WordPress Customizer
.

In your child-theme or custom CSS box, add the following code:
.woocommerce-breadcrumb {
display: none;
}
If that doesn't work, use !important like so:
.woocommerce-breadcrumb {
display: none !important;
}
Do not use !important unless necessary and only edit your child-theme or you will lose this modification on next theme update.
It's best to put the above code in the CSS box if your theme has one. It can usually be found under 'Theme Options' in wp-admin.
The code I gave will simply hide the concerned CSS class.
Hope this helps.

Related

How to hide this .wpnotif_admin_conf .wpnotif_sts_logo (class) from WordPress Admin Area

I have tried this CSS, But not working, still showing.
.wpnotif_admin_conf .wpnotif_sts_logo {
display: none !important;
}
Now what I can use to hide this Class from the Admin Area?
Use a comma if these are 2 classes.
.wpnotif_admin_conf, .wpnotif_sts_logo {
display: none !important;
}
It depends on where you are adding the CSS. As this is a backend page, adding the CSS on style.css or additional CSS in Customizer won't work.
You need to add a custom CSS for the admin and mention the CSS there. Check admin_enqueue_scripts.

how to disable header media in wordpress?

I am facing header media issues. I don't want that header area on my top of the website. I tried CSS code
.home #wp-custom-header {
display: none;"
}
but it's not working. please check my site for more details hindizone.in
It would be a better solution to change your theme template file so there is no such div container to be hidden. This can normally be found in header.php file of your theme. Delete the div with the class header-bottom.
Another way would be using CSS as you already tried. But you do not have an element with id wp-custom-header so this code is doing nothing. You can find out the right element to target with using the inspector of your browser.
I did this with your code and therefore found the classes you need to address in your css file.
Add following code to your custom css in the theme editor, or inside style.css of your theme:
#site-header.top-header .header-bottom {
display: none !important;
}
With the !important statement you make sure, that the display value is not being overwritten somewhere else in your stylesheet.
#site-header {
display: none;
}
...should work for your site.

How to remove "Hello Member" in Woocommerce Checkout page?

i want to remove this area, in checkout page, but every my try was not working. I tryed to insert this CSS:
.avada-myaccount-user-column .username {
display:none;
}
This is product that trying to insert into cart, for testing purposes. Someone to help me ?
.avada-myaccount-user-column.username {
display:none;
}
Use that ^. When you have two classes in a DIV you want to target, you don't have spaces between them to target. If it doesn't work, it's possible to override with custom templates. See https://docs.woocommerce.com/document/template-structure/ for theme overrides. Since you're using a premium theme, their support should be able to help you. If you do theme overrides, you should do them in a child theme so you can update the parent theme gracefully as updates come out.
.avada-myaccount-user-column .username will not work because .username is not a child of .avada-myaccount-user-column.
Change your CSS to:
.avada-myaccount-user-column.username {
display: none;
}
This example means the first class requires the second class for it to be affected.

Remove - before leave a comment on Wordpress Genesis theme

I just added the shortcode to add "leave a comment" in the footer of my posts and it shows a dash before. Is there a way to get rid of that dash? I've been Googling and not seeing any answers. My test site, I'm using a Genesis child theme.
Here is the css that is causing that dash.
.entry-comments-link::before {
content: "\2014";
margin: 0 6px 0 2px;
}
In your child theme, simply overwrite it with
.entry-comments-link::before {
content: none;
}
Perfect answer. I had the same question myself. In addition to overwriting it in the child theme, I was able to use it with the Simple Custom CSS and JS plugin which allows me to preserve the CSS while switching child themes. I don't know if it works with other similar plugins.

How to add space between posts when using Wordpress with Toolbox theme

I am looking for a way to add space between Wordpress posts when using the
popular Toolbox theme.
If anybody could tell me where too put that "margin-bottom" tag I would be very glad!
Thanks a lot!
.post is the class applied to the entire post and it's not included in the default stylesheet for your theme so you'll have to add it.
In this file:
/wp-content/themes/toolbox/style.css
Under the "Content" section, add this class & style:
.post {
margin-bottom: 80px; /* <--- whatever you need */
}
80px is arbitrary... use whatever size/units you'd like.

Resources