I am trying to: Have a pagination working. Just the "Previous" link show but not "Next".
I also show the previous and next page name under the link. I just want the raw text, not the link for the post name so I have put some CSS to cancel the link :
{pointer-events: none; cursor: default; color: black;}
Link to a page where the issue can be seen: hidden link
The code I use. The first link work, but the second doesn't show.
<div class="div-pagination">
<div class="div-prec">[wpv-pager-prev-page force="true"][wpml-string context="wpv-views"]Précédant<br><div class="previous-next">[wpv-post-previous-link format="%%LINK%%" link="%%TITLE%%"]</div>[/wpml-string][/wpv-pager-prev-page]</div>
<div class="div-suiv">[wpv-pager-next-page force="true"][wpml-string context="wpv-views"]Suivant<br><div class="previous-next">[wpv-post-next-link format="%%LINK%%" link="%%TITLE%%"]</div>[/wpml-string][/wpv-pager-next-page]</div>
</div>
My issue is resolved now. Thank you!