Home Forums WoodMart support forum Problem with the “Add to Cart” button in product categories

Problem with the “Add to Cart” button in product categories

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #651239

    teodor1906
    Participant

    I’ve noticed an issue with the “Add to Cart” button on the product category pages. Currently, this button generates dynamic URLs like: https://thk.ro/product-name/?add-to-cart=

    This behavior is problematic for a few reasons, it may negatively affect SEO, increase crawl budget usage, and create unnecessary URL variations.

    I would like the button to work differently. Specifically:

    When clicked, the “Add to Cart” button should redirect users directly to the product page, not add the product to the cart immediately.

    It should link to the clean product URL, without query parameters (no ?add-to-cart=).

    For example, the link should look like this: https://thk.ro/product-name/ instead of using dynamic parameters.

    Attachments:
    You must be logged in to view attached files.
    #651378

    Hello,

    There is no option available for this in the theme settings to change this behaviour. This requires customization, which is beyond our support policy.

    I have searched for a possible solution and found a custom function that you can add to your functions.php file. I have tested this code on our test site, and it is working fine.

    If the provided code does not work as expected, unfortunately, we are unable to modify it further.

    Add this to your theme’s functions.php file of the theme.

    function replace_add_to_cart_with_product_link($url, $product) {
        return get_permalink($product->get_id());
    }
    add_filter('woocommerce_product_add_to_cart_url', 'replace_add_to_cart_with_product_link', 10, 2);

    Hope this Helps!

    Best Regards,

    #651407

    teodor1906
    Participant

    Thank you very much for the help, this problem should be taken into consideration for the next update if possible, it is quite important.

    #651489

    Hello,

    You’re very welcome! I’m glad I could help. If you need anything else, feel free to reach out!

    I suggest you leave a future request here: https://woodmart.canny.io/feature-requests

    Thanks for contacting us.
    Have a great day.

    Topic Closed.
    Best Regards,

Viewing 4 posts - 1 through 4 (of 4 total)

The topic ‘Problem with the “Add to Cart” button in product categories’ is closed to new replies.