Can I disable URL Aliases for a content type? If I leave the pattern blank, it inherits the default pattern. I can uncheck the "Generate automatic URL alias" checkbox on a specific node, but I'm looking to permanently default that setting to off.
https://www.drupal.org/project/views/issues/1266388 shows that this is an architectural issue, and requires another 2 hooks being adjusted.
It would be really nice to add comments/notes to...
Hmmm, from D7 ancient tomes:
from https://drupal.stackexchange.com/questions/7056/limit-which-roles-can-view-a-node-basing-on-its-content-type
yet https://docs.backdropcms.org/api/...
I also note on this screen:
"Furthermore note that content which is not published is treated in a different way by Backdrop: it can be viewed only by its author or users with the...
I am seeing via dpm debug that the nodes that are authored by someone else are not even being interrogated at the view level; they are simply avoiding the hook_node_access call.
Yet the...
One suggestion would be to "fail early". It looks like if the user does not have the organisation field set, none of the other code matters.
if ($role == "organisation") {
$u = user_load($...
Comments
You could create a pattern of:
That will do the same as turning the patterns off
That's awesome. Tested and it worked great. Thanks!