Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #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/

    #860986

    Hey Ammar121,

    Just to clarify; you want the same grey background as on the rest of the page?

    Best regards,
    Rikard

    #861066

    I just want same grey background on the breadcrumb with the same border.

    #861105

    Hi,

    Ad the following to quick css:

    .alternate_color{
    background:#fcfcfc!important;
    }

    You can adjust the color to whatever you need.

    Best regards,
    Jordan Shannon

    #861453

    Thanks 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.

    #861456

    Hi,
    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,
    Mike

    #861465

    Yes this is good but read more button is not appearing.

    #861561

    Hi,
    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,
    Mike

    #861691

    That is good but your theme have different read more button i think.

    #861700

    Hi,
    Can you link to the one you would like so we can match it?

    Best regards,
    Mike

    #861701
    #862054

    Hi,

    Please add Mike’s code back in so we can see the read more button and style appropriately.

    Best regards,
    Jordan Shannon

    #862092

    I didn’t removed any code.

    #862168

    Hi,

    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

Viewing 14 posts - 1 through 14 (of 14 total)
  • You must be logged in to reply to this topic.