Skip to content

Instantly share code, notes, and snippets.

View gbeezus's full-sized avatar

Olu Adeyanju gbeezus

View GitHub Profile
@shaal
shaal / sassrosenberg.theme
Created March 2, 2018 18:15
Drupal8 preprocess menu - Hide "About" Menu Item (from Main Menu), if current node title is "Who are we?"
/**
* Implements hook_preprocess_menu() for menu.html.twig.
*/
use Drupal\node\Entity\Node;
function sassrosenberg_preprocess_menu(&$variables, $hook)
{
if ($hook == 'menu__main') {