By Phil Frilling, 9 November, 2016
In order to alter a menu item that is provided by a module/system, you can use hook_preprocess_menu__MENUNAME() (Since hook_menu_alter() no longer exists). In my instance, I need to change the system provided 'Logout' link to read 'Log Out'.
By Phil Frilling, 23 September, 2016
I was working on a new Drupal 8 site and had a new geolocation view setup to show locations on a Google map. Everything was working well, then I decided I wanted to add a new field to the node and include that field in the view. After adding the field to the view, I decided against using it and deleted the field from the node (before removing it from the view). This, in turn, deleted the entire view, which cost me a days worth of work!
By Phil Frilling, 16 September, 2016
Today I needed to add a custom textfield to the 'customer information' pane in Ubercart. After much searching, I wasn't able to find any modules that would allow this to happen, so I wrote my own. I found this article, which gave me the starting block (as it was written for Drupal 6 I believe). 1.