Hello @ihou
Thank you for reaching out!
If you’re referring to the Product Listing widget and want the images to be clickable, then yes, the product images redirect to the Single Product page.
You can check this in action here: https://qpno4oar3w.vmaker.com/record/fzBGIZbpS09tOyWb
If you have any other concerns or need further assistance, please feel free to let us know.
Best Regards.
Sorry, I forgot to mention when using Metro style.
But maybe I will create a custom template for it..
-
This reply was modified 1 year ago by
ElectroN.
-
This reply was modified 1 year ago by
ElectroN.
Hello @ihou
Thank you for bringing this to our attention.
I would like to inform you that this issue will be fixed in the next release of The Plus Addons.
In the meantime, if you have any concerns or require assistance, please let us know.
Best Regards.
Hello @ihou
Thank you for your patience.
I would like to inform you that this issue has been resolved in the latest version (v6.1.4) of The Plus Addons for Elementor. Please update the plugin and confirm the same.
If you have any concerns, please let us know.
Best Regards.
Hello @ihou
It’s been a while since we last heard from you. I hope you are no longer encountering the issue. We are marking this ticket as resolved now.
If you encounter any further issues or have any concerns, please open a new thread.
Thank You.
Hello,
Thank you for including it in the update.
I forgot to mention my temporary JS fix:
document.querySelectorAll("article").forEach((article) => {
// Get the link from the post-title a
const linkElement = article.querySelector(".post-title a");
if (linkElement) {
const href = linkElement.getAttribute("href"); // Get the href attribute
article.style.cursor = "pointer"; // Change the cursor style for better UX
article.addEventListener("click", () => {
window.location.href = href; // Redirect to the href on click
});
}
});