But what if we don't want users to only access the file browser from their profile page?
One of my projects requires users to restrict access to their profile page but have access to the file browser. So I created a patch that added a new permission called: Administer Imce File Browser. This way users can access the /admin/imce/browser path. Configuration profiles still work!
Also not sure if I'm doing something wrong to achieve what I want, but it seems not possible without my patch.
My issue was fixed by using a patch for the Views module: https://www.drupal.org/project/drupal/issues/3323574 🐛 Pagination not working correctly in AJAX view with exposed filters Needs review
Just saw your comment, my issue was fixed by using a patch for the Views module: https://www.drupal.org/project/drupal/issues/3323574 🐛 Pagination not working correctly in AJAX view with exposed filters Needs review
#9 fixed it for me
Together with Pathauto, if you still save the translated node after the original node is saved, the url alias is being generated as well:
$node->save();
$node_translation->save();
Seppe Beelprez → created an issue.
Sorry for my extreme late response, just had this issue again on a new website I'm working of and I'm using the views_ajax_history module as well. If I unchecked the checkbox Enable Views AJAX history in the AJAX settings of my view, everything is working just fine.
So it's related to that module, will look further into it right now.
After looking into this in more detail, the issue has to do with the use of tokens in another custom module. My apologies for reporting this incorrectly.
Seppe Beelprez → created an issue.
Seppe Beelprez → created an issue.
Solution #10 worked for me too