Hi,
How did you fixed this issue ?
I have the same problem : [wpdm_all_packages] output an empty table.
With WP_DEBUG set to true, I get the following error :
WordPress database error: [Not unique table/alias: 't']
SELECT SQL_CALC_FOUND_ROWS wp_posts.ID
FROM wp_posts
JOIN wp_icl_translations t ON wp_posts.ID = t.element_id
AND t.element_type = 'post_wpdmpro'
JOIN wp_icl_languages l ON t.language_code = l.code
AND l.active =1
JOIN wp_icl_translations t ON wp_posts.ID = t.element_id
AND t.element_type = 'post_wpdmpro'
JOIN wp_icl_languages l ON t.language_code = l.code
AND l.active =1
WHERE 1 =1
AND wp_posts.post_type = 'wpdmpro'
AND (
wp_posts.post_status = 'publish'
OR wp_posts.post_status = 'pending'
OR wp_posts.post_status = 'sent'
OR wp_posts.post_status = 'private'
)
AND t.language_code = 'fr'
AND t.language_code = 'fr'
ORDER BY wp_posts.post_date DESC
LIMIT 0 , 2
The two JOIN clauses are duplicated, which causes an error.
Any idea ?
Thanks for your help.
EDIT : problem solved. Caused by a faulty plug-in.