Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save vijayrami/9cf406a44dcf227085f5 to your computer and use it in GitHub Desktop.
Save vijayrami/9cf406a44dcf227085f5 to your computer and use it in GitHub Desktop.

Revisions

  1. vijayrami created this gist Dec 3, 2015.
    33 changes: 33 additions & 0 deletions How to Change Typo3 Powermail Extension's Templates Path
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,33 @@
    From backend go into your root template (or in extension template where Powermail Extension is included).

    In that, in Constants Editor Add below code:

    plugin.tx_powermail {
    view {
    templateRootPath = EXT:yourtemplate/Resources/Private/Templates/Extensions/Powermail/Templates/
    partialRootPath = EXT:yourtemplate/Resources/Private/Templates/Extensions/Powermail/Partials/
    layoutRootPath = EXT:yourtemplate/Resources/Private/Templates/Extensions/Powermail/Layouts/
    }
    }

    And in Setup, Add below code:

    plugin.tx_powermail {
    view {
    templateRootPaths >
    templateRootPaths {
    0 = EXT:powermail/Resources/Private/Templates/
    1 = EXT:yourtemplate/Resources/Private/Templates/Extensions/Powermail/Templates/
    }
    partialRootPaths >
    partialRootPaths {
    0 = EXT:powermail/Resources/Private/Partials/
    1 = EXT:yourtemplate/Resources/Private/Templates/Extensions/Powermail/Partials/
    }
    layoutRootPaths >
    layoutRootPaths {
    0 = EXT:powermail/Resources/Private/Layouts/
    1 = EXT:yourtemplate/Resources/Private/Templates/Extensions/Powermail/Layouts/
    }
    }
    }