Hi @srjlulla,
It does not remove the ideas, the plugin merely changes the filters of the board to show the users idea as oppose to all ideas. We do this to signal the user that their idea is now on the board. Before we added this feature we had lots of complaints from end users saying their idea is not on the board, when it was, but it was just buried down the bottom. So when a user creates an idea, if they want to see all the ideas again they just need to change the filter. We don’t provide a setting to change this behaviour, it needs to be done via javascript. Thanks,
Figured it out.
If someone is facing the same issue, inc/js/frontendscript.js
userID should not be passed as a parameter:
commonReOrderAndReRenderingOfIdeas(userID);
reRenderHeader(userID);
It can be
commonReOrderAndReRenderingOfIdeas('');
reRenderHeader('');
-
This reply was modified 5 years, 8 months ago by
Suraj Lulla.
Hi @srjlulla,
Thanks for sharing that for others 🙂