-
AuthorPosts
-
April 2, 2014 at 5:29 pm #246625
Hey there –
On the blog page which displays the summary of posts each post is not clickable. They do exist as individual posts although there is no way to get to them individually unless you know the URL This is different than most blogs where the post heading is linked to the post and clickable. If I change to one of the default WP themes it works as expected. I’m primarily concerned about this for SEO although it’s so different from how most blogs work where you can just navigate to the post I’ve had some readers confused by this behavior. Also when you are on a post the left and right arrows on the page provide navigation forward and backwards which is nice but they are not there on the blog page which displays the summary of posts.
Is there a way to change this behavior so that on the summary page the posts are linked to their individual pages? Note: running a child theme with some customization both to style.css and to loop-index.php to move the comments to the end of the post summary.
Thanks!
April 2, 2014 at 5:30 pm #246626This reply has been marked as private.April 3, 2014 at 6:56 am #246876Hey!
Thank you for using the theme!
They should be clickable but you added this css code that disable the pointer events for all the links with the rel attribute on the website:
a[rel] { pointer-events: none; }
Remove that code and posts title links should work again.
Cheers!
IsmaelApril 3, 2014 at 1:58 pm #247020Hi there!
I’ve removed that code and the post title links are now clickable although that also enables the lightbox which I would like to turn off.
Is there a code that could could be used to only disable the lightbox? I have a child theme set up.
You had suggested that code to turn off the lightbox, which was a great solution to do that. And I did not appreciate it was also turning off the other pointer events.
See https://kriesi.at/support/topic/blog-images-at-native-size-without-hover/#post-236033Thanks so much.
- This reply was modified 10 years, 7 months ago by penumbra. Reason: clarity
April 5, 2014 at 12:45 am #247696Hey!
Try with this code:
a[rel*="lightbox"] { pointer-events: none; }
Best regards,
JosueApril 5, 2014 at 2:58 pm #247785Hey there – That code does the trick, turning off the lightbox while leaving on the post title links so those are remain clickable . Thank you!
-
AuthorPosts
- The topic ‘blog page navigation’ is closed to new replies.