sfadschm
Forum Replies Created
-
Sorry for not following up!
It was indeed the mentioned category filter which was applied to pages it was not supposed to be applied to.
So no issue with the plugin, but with my own WP modifications. 🙈
Thanks again for the support!
- This reply was modified 10 months, 2 weeks ago by sfadschm.
So the taxonomy filter appears to be a post category filter. I will have to check where this comes from, but would guess that it is likely not a plugin issue but rather a theme one.
Thanks for the support so far! I will update and close if I can resolve it.
There is indeed “Block Visibility” running, however it is not in use on the file pages and disabling it did not change to the issue.
I took a look at the queries and this is the one in question return an empty result:
SELECT wp_posts.*
FROM wp_posts
LEFT JOIN wp_term_relationships
ON (wp_posts.ID = wp_term_relationships.object_id)
LEFT JOIN wp_postmeta
ON ( wp_posts.ID = wp_postmeta.post_id )
LEFT JOIN wp_postmeta AS mt1
ON ( wp_posts.ID = mt1.post_id
AND mt1.meta_key = ‘_sf_not_public’ )
WHERE 1=1
AND (wp_term_relationships.term_taxonomy_id IN (11,25,26,57,64,65))
AND ( ( wp_postmeta.meta_key = ‘_sf_not_public’
AND wp_postmeta.meta_value = ” )
OR mt1.post_id IS NULL )
AND wp_posts.post_type = ‘shared_file’
AND ((wp_posts.post_status = ‘publish’))
GROUP BY wp_posts.ID
ORDER BY wp_posts.post_date DESCIn the file edit mode, I see status->published, visibility->public, post-type->File. No real idea what could make this file fall through the query. Not sure about the taxonomy IDs, but it looks like these are basically all.
Thanks for the quick reply!
The option is unchecked and the files are also not displayed on the same page where they are uploaded (neither in the same [shared_files file_upload=1] short code nor in an additional one).
Some specifics on the website: It is a network page with two subpages and it is installed in a subfolder on the server (no subfolder in the URL, just a subfolder on the filesystem). As far as I can tell, none of these should affect the plugin, especially as the download from the backend works fine.