• If I click “X” to remove item from wishlist on page that includes [wishsuite_table] shortcode, the product is removed and I get the notification that it is removed but it still remains visible.

    After some digging I discovered that there is a bug in frontend.js function ajaxRequestToRemoveItem – more specifically the line:

    $('.wishsuite-table-content').closest('.entry-content').html(html);

    If you search the whole plugin code this .entry-content class is only here and nowhere else in the code.
    If I replace the line above with:

    $('.wishsuite-table-content').replaceWith(html);

    then it works.

    Just a hint for a fix in the next version – I’ve now fixed this in my plugin installation and I don’t want it to break again with the next update.

Viewing 1 replies (of 1 total)
  • Hi @sinusiks ,

    Thank you very much for identifying this issue and providing a detailed explanation along with your solution. We truly appreciate your time and effort in sharing this valuable feedback.

    We will review the relevant part of the plugin code and implement your suggested fix in the next update. Additionally, We will explore alternative approaches to ensure we address this issue in the most effective way possible.

    Thanks again for your valuable contribution.

    Best regards,
    Support Team

Viewing 1 replies (of 1 total)

The topic ‘Removing from wishlist table does not reload the table’ is closed to new replies.