-
AuthorPosts
-
October 6, 2017 at 1:19 am #860802
Please see in your theme breadcrumb is of different style like border and background but my is different iI want same likes your demo http://kriesi.at/documentation/enfold/inserting-breadcrumbs-as-shortcode/
October 6, 2017 at 12:59 pm #860986Hey Ammar121,
Just to clarify; you want the same grey background as on the rest of the page?
Best regards,
RikardOctober 6, 2017 at 4:22 pm #861066I just want same grey background on the breadcrumb with the same border.
October 6, 2017 at 6:09 pm #861105Hi,
Ad the following to quick css:
.alternate_color{ background:#fcfcfc!important; }
You can adjust the color to whatever you need.
Best regards,
Jordan ShannonOctober 7, 2017 at 9:42 pm #861453Thanks this is resolved. One more issue I have.. In the provided url blog main page it should show excerpt not full post. Settings in blog is also correct to Blog Content length> Excerpt and read more button.
October 7, 2017 at 10:08 pm #861456Hi,
I added this code to the end of your functions.php file in Appearance > Editor:// Force manual except for default editor add_filter( 'the_content', 'replace_content_with_excerpt', 100 ); function replace_content_with_excerpt( $content ) { if ( is_singular() ) { return $content; } remove_filter( 'the_content', __FUNCTION__, 100 ); $excerpt = apply_filters( 'the_excerpt', get_the_excerpt() ); add_filter( 'the_content', __FUNCTION__, 100 ); return $excerpt; }
Look for the excerpt box under your post in editor, if you don’t see it look at the very top of your page for “Screen Options” and check the excerpt box.
Best regards,
MikeOctober 7, 2017 at 11:38 pm #861465Yes this is good but read more button is not appearing.
October 8, 2017 at 2:26 pm #861561Hi,
I added this code to the end of your functions.php file in Appearance > Editor://* Changing excerpt more - only works where excerpt IS hand-crafted function manual_excerpt_more( $excerpt ) { $excerpt_more = ''; if( has_excerpt() ) { $excerpt_more = ' <a href="' . get_permalink() . '" rel="nofollow">[Read more]</a>'; } return $excerpt . $excerpt_more; } add_filter( 'get_the_excerpt', 'manual_excerpt_more' );
Please review.
Best regards,
MikeOctober 8, 2017 at 10:18 pm #861691That is good but your theme have different read more button i think.
October 8, 2017 at 10:48 pm #861700October 8, 2017 at 10:50 pm #861701http://kriesi.at/themes/enfold/blog/ same like this.
October 9, 2017 at 7:32 pm #862054Hi,
Please add Mike’s code back in so we can see the read more button and style appropriately.
Best regards,
Jordan ShannonOctober 9, 2017 at 8:33 pm #862092I didn’t removed any code.
October 9, 2017 at 11:14 pm #862168Hi,
Okay, I may be on the wrong area. I’m not seeing the “read more” button at all. If it is there, please link me to the page.
Best regards,
Jordan Shannon -
AuthorPosts
- You must be logged in to reply to this topic.