Tagged: Blog
-
AuthorPosts
-
January 19, 2014 at 11:41 pm #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?
January 21, 2014 at 11:04 pm #213025Hi 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,
DevinJanuary 21, 2014 at 11:24 pm #213034Hi, 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=standardhere is the link to the blog
http://customizewp.com/blogAs 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
BoguszJanuary 22, 2014 at 1:21 am #213094Hi!
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,
YigitJanuary 22, 2014 at 11:02 am #213229Hi, 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 AddThisI have removed this part from the page and it is not better
regards
BoguszJanuary 22, 2014 at 11:04 am #213231I have turned off all the plugins and it did not help either.
January 23, 2014 at 9:52 am #213750Hey!
Please create us an admin account – we need to check the configuration first hand.
Cheers!
PeterJanuary 23, 2014 at 11:16 am #213778This reply has been marked as private.January 23, 2014 at 2:33 pm #213852Hi!
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,
IsmaelJanuary 23, 2014 at 3:32 pm #213881Hi, 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.January 27, 2014 at 10:42 am #215265Hi,
Could you please answer to my two question in a post above?
B.
January 27, 2014 at 10:50 am #215270Hey!
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,
PeterJanuary 27, 2014 at 11:49 am #215294Hi,
Thanks!
1. Is there any way I could use excerpt for this?January 28, 2014 at 9:20 am #215690Hey!
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"> →</span></a></div>'; } return $current_post; }
Cheers!
PeterFebruary 16, 2014 at 11:59 am #224516Hi, the code you have included makes my excerpt display 2 times.
February 17, 2014 at 6:47 am #224781April 8, 2014 at 11:50 pm #248985Hi 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.
April 9, 2014 at 1:45 am #249004Hey!
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!
IsmaelApril 9, 2014 at 2:21 pm #249265On blog index I cannot, but on blog single page I can.
April 9, 2014 at 2:41 pm #249277 -
AuthorPosts
- The topic ‘Issues with blog’ is closed to new replies.