$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>Delete Title and Icone in Homepage|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

Delete Title and Icone in Homepage

matteradmin10PV0评论

Hi, my website im doing now is nurulsazlinprubsntakaful

i want to delete home ---> Home as per pic i attach.

i read its about breadcrumbs. i also use inspect function in web browser.i get code like this from some discussion in other forum. .title-box { display: none; }

i put in additional css. still not solve.

im very new in wordpress. hope someone can help me...tq2.

other than that, i also awant to delete icon share.

Hi, my website im doing now is nurulsazlinprubsntakaful

i want to delete home ---> Home as per pic i attach.

i read its about breadcrumbs. i also use inspect function in web browser.i get code like this from some discussion in other forum. .title-box { display: none; }

i put in additional css. still not solve.

im very new in wordpress. hope someone can help me...tq2.

other than that, i also awant to delete icon share.

Share Improve this question asked Jan 4, 2019 at 4:02 Elit TechsElit Techs 52 bronze badges
Add a comment  | 

2 Answers 2

Reset to default 1

First, check your theme's settings, if breadcrumbs can be turned on/off. If not, the following CSS will hide breadcrumbs:

nav.breadcrumbs {
    display: none;
}

Put the above lines, into Customize -> Additional CSS, or into your theme's style.css.

To remove sharing buttons, use the following CSS:

div.share.js-share {
    display: none;
}

I helped you hide the header in another question. Just curious how did you come up with .title-box? What you want to do is hit F12 and get the class or ID of the outer most element you want to hide.

So if we inspect your page, the breadcrumb has a div around it with the class breadcrumbs.

So we can add the following to your stylesheet, just like before, with the customizer, Appearance > Customize > Additional CSS.

.breadcrumbs {
    display: none; 
}

Also, if you are going to make a lot of edits, its better to make a child theme, then you can override the stylesheet without having to use the admin customizer.

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far