• Hi !

    Does anyone know how I can fix this? The learn more button on the front page for the post snippets work randomly. For some posts they work and for others there doesn’t seem to be a link to the actual article.

    Any thoughts? And solutions?

    Thank you.

Viewing 1 replies (of 1 total)
  • The learn more button is created by HTML link tag.
    You need to edit it correctly.
    If done correctly, it will work properly.

    For example.

    <a class="read-more btn t4p-button" href="#">Learn more</a>

    Change learn more to Google and URL to Google.com

    <a class="read-more btn t4p-button" href="https://google.com">Google</a>

    Make it open in new tab.

    <a class="read-more btn t4p-button" href="https://google.com" target="_blank">Google</a>

Viewing 1 replies (of 1 total)
  • The topic ‘Learn more button in post snippets are not responding on mobile view.’ is closed to new replies.