My view has an attachment. The main part of the view (not the attachment) has a pager. The pager triggers VIF, which replaces the entire view with the new entire view, including attachment nodes.
Problem:
All the find('.view-content')
find ALL the .view-content
nodes, including those within attachments. It should find only the main view's content.
Solution:
Use children('.view-content')
instead of find('.view-content')
.
This takes only the view's main content from the ajax response, and adds it to only the current view's main content.
Patch to follow.
Closed: outdated
2.1
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.