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

    #246626
    This reply has been marked as private.
    #246876

    Hey!

    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!
    Ismael

    #247020

    Hi 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-236033

    Thanks so much.

    • This reply was modified 10 years, 7 months ago by penumbra. Reason: clarity
    #247696

    Hey!

    Try with this code:

    a[rel*="lightbox"] {
    pointer-events: none;
    }

    Best regards,
    Josue

    #247785

    Hey there – That code does the trick, turning off the lightbox while leaving on the post title links so those are remain clickable . Thank you!

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘blog page navigation’ is closed to new replies.