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.
No, that won't work. My dev server's address looks like: localhost:1000/xyz/folder1/folder2
My prod server address looks like: example.com
Just using a relative...
I am guilty (in Drupal) of using PHP Filter in places just so I can use l() and url(), since my paths are very different between dev and prod servers.
For example, at the top of my Views,...
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!