Tagged: 

Viewing 20 posts - 1 through 20 (of 20 total)
  • Author
    Posts
  • #212027

    Hi,

    The blog on my site is not displaying the post title in <h1>, author, publish date, no of comments and category. and so on. on the post page and on the posts index. How can I make it to display? I have no additional CSS or code disabling it. Additionally in posts list how to choose if ther should be post full content displayed or only excerpt?

    #213025

    Hi Bogusz!

    Can we take a look at the site live so we can inspect it?

    For the blog output, if you deselect the blog page from the theme options you can then use the advanced layout editor “Blog” element in a page and choose how the blog feed is displayed.

    As long as your menu points to that page as the blog then it will output your feed like normal.

    Regards,
    Devin

    #213034

    Hi, her is the link to the article
    http://customizewp.com/eliminate-render-blocking-javascript-and-css-above-the-fold-content-in-wordpress-w3-total-cache/?preview=true&preview_id=915&preview_nonce=69cf825da2&post_format=standard

    here is the link to the blog
    http://customizewp.com/blog

    As you can see also the image is streached and I do not think it should

    In Theme preferences I do have set a page blog as blog
    In Theme settings -> Theme Options I have set blog page as blog and in the “General Setting” section I have set “Multi author blog”

    regards
    Bogusz

    #213094

    Hi!

    It is probably because AddThis implementation went wrong as i see following line right under title

    <?php do_action( ‘addthis_widget’ ); ?>

    Please try and undo changes you have made and check if that solves the issue.

    Best regards,
    Yigit

    #213229

    Hi, This is absolutely impossible for 3 reasons:

    1. This is encoded as text. Otherwise you would not be able to see such elements like ‘<‘ or ‘>’.
    2. I do not have the AddThis any more
    3. The issue was there before I have installed AddThis

    I have removed this part from the page and it is not better

    regards
    Bogusz

    #213231

    I have turned off all the plugins and it did not help either.

    #213750

    Hey!

    Please create us an admin account – we need to check the configuration first hand.

    Cheers!
    Peter

    #213778
    This reply has been marked as private.
    #213852

    Hi!

    Please add this on Quick CSS or custom.css:

    header.entry-content-header {
    display: block;
    }

    Flush the cache plugin settings to see the effect.

    Regards,
    Ismael

    #213881

    Hi, Thanks! This has helped. Seems my changes in CSS caused the issue. The image is not centered but I hope I will manage to fix it on my own. Two last questions:

    1. how can I limit the text lenght on the post index page?
    2. On post single page, how can I make the featured image not being able to open in the lightbox?

    regards
    B.

    #215265

    Hi,

    Could you please answer to my two question in a post above?

    B.

    #215270

    Hey!

    1) Use the more quicktag: http://en.support.wordpress.com/splitting-content/more-tag/

    2) Insert this code into the quick css field

    
    .big-preview.single-big {
    pointer-events: none;
    }
    

    Regards,
    Peter

    #215294

    Hi,

    Thanks!
    1. Is there any way I could use excerpt for this?

    #215690

    Hey!

    Yes, insert this code into the functions.php file

    
    add_filter( 'post-format-standard', 'avia_category_content_filter', 15, 1);
    function avia_category_content_filter($current_post)
    {
    if(!is_single())
    {
    	$current_post['content'] =  get_the_excerpt();
    	$current_post['content'] = $current_post['content'].'<div class="read-more-link"><a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span></a></div>';
    }
    return $current_post;
    }
    

    Cheers!
    Peter

    #224516

    Hi, the code you have included makes my excerpt display 2 times.

    #224781

    Hi!

    I updated Dude’s code above. Please use it instead.

    Cheers!
    Ismael

    #248985

    Hi Sorry for late reposne, the code for excerpt worked. However I still cannot remove the overlay on blog featured image and remove possibility to display it in lightbox.

    #249004

    Hey!

    Thank you for updating.

    I checked the website and I can’t click on the featured images above the post title. I think this is what you want, right? I’m testing it on Chrome Windows 8. Please try this:

    .big-preview.single-big a {
    pointer-events: none !important;
    }

    I hope that helps.

    Cheers!
    Ismael

    #249265

    On blog index I cannot, but on blog single page I can.

    #249277

    Hi!

    Please add following code to Quick CSS as well

    #top .fullsize .template-blog .big-preview.multi-big { pointer-events: none; }

    Regards,
    Yigit

Viewing 20 posts - 1 through 20 (of 20 total)
  • The topic ‘Issues with blog’ is closed to new replies.