You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The categories are not associated with the post because there is no category ID on the edit post page.
To fix this, you need to update the query in getAllCategories (file: classes/EverPsBlogCategory.php).
Change (line 248) :
$sql->select('*');
To:
$sql->select('bc.*, bcl.title, bcl.meta_title, bcl.meta_description, bcl.link_rewrite, bcl.content, bcl.bottom_content');
This is necessary because id_ever_category is ambiguous in the current query.