Home › Forums › Pro Themes › Bizplan Pro › Changing Title of 'Blog'
- This topic has 2 replies, 2 voices, and was last updated 2 months, 2 weeks ago by
wensolutions.
-
AuthorPosts
-
September 26, 2019 at 5:43 pm #106826
Ben Edwards
ParticipantHello
I was just wondering if there is any way to change the title of the inner ‘blog’ page. While you can change the header for the blog on the front-page, once you are in the inner pages, it just calls it blog (see pic below). Is there a custom CSS fix for this or can I go in and fix in the theme editor some how?
Also, if you click through to one of the inner services pages, and you then click on the ‘services’ link in the home / services / [name of the page] display within the banner image, that takes you through to an ‘Archive: services’ page – here >> https://www.pensar.media/services/
The image quality for each of the services categories on this page are terrible, even though the images the page is drawing from are hi-res – how can I fix the image quality here? And also is there any way of removing the ‘Archive:’ part of the page title (it’s not an archive – would rather it just said ‘Services’).
kind regards
BenSeptember 26, 2019 at 9:18 pm #106829Ben Edwards
ParticipantUPDATE:
Hi – I’ve managed to fix the first part of my request – but I still need help with this bit:
When you go to https://www.pensar.media/services/
The image quality for each of the services panels on this page are terrible, even though the images the page is drawing from are hi-res – how can I fix the image quality here? And also is there any way of removing the ‘Archive:’ part of the page title (it’s not an archive – would rather it just said ‘Services’).
kind regards
BenSeptember 27, 2019 at 12:45 am #106835wensolutions
KeymasterHello @pensar,
As for the image quality, you have used the smaller image size as you can see in the screenshot below:
So it gets stretched out in the page that you have provided the link of. So please upload the image of bigger size so that it displays perfectly fine.
Regarding the removing the “Archive:” in the archive page, please add below-given CSS in your child theme functions.php file.
To know how you can create and activate the child theme, refer to below given link:
https://wptravel.io/how-to-create-a-child-theme/
After activating the child theme in you child theme fucntions.php file add below given code:
function bizplan_pro_child_remove_cat_titles($title) { if ( is_archive() ) { $title = single_cat_title( '', false ); } elseif ( is_tag() ) { $title = single_tag_title( '', false ); } elseif ( is_author() ) { $title = '<span class="vcard">' . get_the_author() . '</span>' ; } return $title; } add_filter( 'get_the_archive_title', 'bizplan_pro_child_remove_cat_titles' );
Hope this helps.
Thank you.
-
AuthorPosts
- You must be logged in to reply to this topic.