Skip to content

Instantly share code, notes, and snippets.

@vmasciotta
vmasciotta / topbar-foundation-drupal.php
Last active November 27, 2017 01:02
Foundation Zurb TopBar Navigation for Drupal
//add this in page.tpl.php
<?php if ($main_menu): ?>
<div class="row">
<div class="twelve columns">
<nav id="navigation" class="top-bar">
<ul>
<li class="name"><h1><a href="#">Navigation</a></h1></li>
<li class="toggle-topbar"><a href="#"></a></li>
</ul>
<section class="section">
@vmasciotta
vmasciotta / ImageResize.php
Created August 22, 2019 14:06
Fix error catalog placeholder Magento 2.3 - https://github.com/magento/magento2/issues/19710
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\MediaStorage\Service;
use Magento\Catalog\Helper\Image as ImageHelper;