Tagged: breadcrumbs
Hello
Thank you for creating this theme I am very satisfied with it, however I am unable to make changes to the theme.
I have of course tried to browse the forums for answers but these changes does somehow not apply and now I am
loosing way to much time so I would request some support from you.
1. I would like to hide the info below post title both in posts and where they appear in category
2. I would like to change the name of the breadcrumbs e.g. “blog” and etc.
3. I would like to change how the posts appear in category, limit them to a certain length, now they appear in full.
Thank you for your hard work!
Hey neverenough!
Please add following code to Quick CSS in Enfold theme options under Styling tab
1-
post-meta-infos { display: none; }
If that does not work, please post the link to your website
2- Can you please elaborate? I am not sure if i understood you clearly
3- Please go to Enfold theme options > General Settings and choose Single Author, Big Preview Pic in Blog Style
Best regards,
Yigit
Hey!
1-Dot was missing in front of the class. Please add it Quick CSS as following
.post-meta-infos { display: none; }
2- Please refer to https://kriesi.at/support/topic/remove-blog-from-title-bar/#post-182579
3- Please go to Settings > Reading and check "Summary" in "For each article in a feed, show" and add following code to Functions.php file
function custom_excerpt_length( $length ) {
return 20;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
Cheers!
Yigit
Hi!
You need to clear your caching plugins cache and any files that were pre-minimized when adding in new css. Otherwise you will not see the css reflected on the live site.
Regards,
Devin