Skip to content

Instantly share code, notes, and snippets.

@jerrylopez
jerrylopez / README.md
Last active May 3, 2019 16:39
Asynchronous Email Fix for Magento 2

Usage

  1. Require composer-patches: composer require cweagans/composer-patches
  2. Add the patches section to your composer.json extra field.
  3. Remove existing packages: rm -rf vendor/magento/module-sales vendor/magento/framework
  4. Run composer install to re-install and apply patches.
@jerrylopez
jerrylopez / README.md
Last active May 3, 2019 21:25
Unintentional Adminhtml Login Page Redirect Patch

Usage

  1. Download the github-issue-22590.diff and save it to MAGENTO_ROOT/patches/composer/
  2. Require composer-patches: composer require cweagans/composer-patches
  3. Add the patches section to your composer.json extra field.
  4. Remove existing packages: rm -rf vendor/magento/framework
  5. Run composer install to re-install and apply patches.
@jerrylopez
jerrylopez / Topmenu.php
Created January 29, 2020 13:18 — forked from elenakondrateva/Topmenu.php
Move Magento2 top menu categories under second level
<?php
namespace Acme\Topmenu\Plugin\Theme\Block\Html;
use Magento\Framework\Data\Tree\NodeFactory;
use Magento\Framework\Data\TreeFactory;
use Magento\Framework\Data\Tree\Node;
use Magento\Framework\Data\Tree;
class Topmenu
{