1. On the author page, how can I remove the box at the top showing the image, posts, comments? http://majorfuss.com/author/catherine-levine/
2. On a tag page, how can I remove the word “Tag” in the title? https://snag.gy/zcP09l.jpg And how can I hide the breadcrumbs on tag pages only? https://snag.gy/pg7LnA.jpg
3. On a search page, how can I increase the font size of “If you’re unhappy…”? https://snag.gy/6FhxKr.jpg
4. On a 404 page, how can I change all of the font styles? https://snag.gy/t4Tfwo.jpg And how can I change the block title to a different style? https://snag.gy/XN6wEZ.jpg
5. On mobile, how can I remove the top menu showing my social icons? https://snag.gy/JzluHL.jpg
Hi,
1. That is an author box, it is automatically displayed on the author page. You could remove it with some CSS if you don’t want the author meta displayed
– https://www.screencast.com/t/0oBGNuh3
.author .author-box-wrap {
display: none;
}
2. To remove the “Tag:” text you will have to edit this theme file
– https://www.screencast.com/t/EecHV4TCg0
– https://www.screencast.com/t/G4mdyYvQX5m
The result is like this
– https://www.screencast.com/t/bbf91j0y58f
The breadcrumbs can either be enabled or disabled for all the website, there is no option to disable them specifically for the tag pages.
You could use some CSS to remove them on tag pages only, like this
– https://www.screencast.com/t/kXzovJQo
.tag .entry-crumbs {
display: none;
}
3. That could be increased like this
– https://www.screencast.com/t/flM1XEXkeAO
.td_search_subtitle {
font-size: 20px;
}
4. There are no options to modify those elements at the moment, unless you use custom code and make modifications in the 404 template of the theme
– https://www.screencast.com/t/CGbyqnrSzX
5. The easiest way would be with custom code
– https://www.screencast.com/t/j9JnggbAokkB
.td-menu-mob-open-menu .td-menu-socials {
display: none;
}
Thanks
Thanks Simion.
1. Thank you. On the author page – http://majorfuss.com/author/catherine-levine/ – how can I link “Authors” in the breadcrumbs to a separate page? It doesn’t link to anything at the moment.
And the pagination at the bottom. Is it possible to have “Load more” instead of ‘pages 1, 2, etc’ for author pages?
2. Sorry, how would I edit the theme file? I don’t see that option in the theme panel.
4. Same as above. I don’t know how to edit a theme file.
Hi,
1. You can use a redirect plugin for simple redirects, through code this may not be easy to do. Redirect that link to the the one you want
– http://www.wpbeginner.com/beginners-guide/beginners-guide-to-creating-redirects-in-wordpress/
The Load more pagination is available only for blocks. The article lists loop like the one on the author page use numeric pagination only. This cannot be changed.
2/4 You can use any text editor to edit the file. This modification can be made directly to the theme file, or through a child theme if you use one. You will have to probably access the theme folder an files by FTP, in order to modify the file
– http://www.wpbeginner.com/beginners-guide/how-to-use-ftp-to-upload-files-to-wordpress-for-beginners/
– https://codex.wordpress.org/Using_FileZilla
Thanks
1. Sorry, for this breadcrumb link, I don’t mean a separate URL. The parent category in the breadcrumb link on all pages doesn’t link to anything at the moment – can it link to the page it’s referring to?
https://snag.gy/iYqOFJ.jpg / http://majorfuss.com/tv/news/big-bang-theory-young-sheldon-full-season/
Hi,
That is the last element in the breadcrumbs, there is a condition that this will not have a link. If it had, I believe it would link to the same page, and there is no point in that. If you were to remove that condition the last element in the breadcrumbs will have a link
– https://www.screencast.com/t/xBLc2GGn2
I believe you also have article titles in the breadcrumbs disabled
– https://www.screencast.com/t/UPziz6ed
If those were enabled then the category will have a link, since they will not be the last item in the breadcrumbs.
Thanks