Last active
May 1, 2018 14:45
-
-
Save cellobnu/807ca1df5f50455499dc776a1cbc7e96 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Local de cadas variavels ADMIN -> SISTEMA -> CONFIGURACAO -> Geral -> Configuracao da loja --> | |
<?php echo Mage::getStoreConfig('general/store_information/name') ?> Nome da Loja | |
<?php echo Mage::getStoreConfig('general/store_information/merchant_vat_number') ?> Numero da CNPJ | |
<?php echo Mage::getStoreConfig('general/store_information/address') ?> Endereco do Clinete | |
<!-- ADMIN -> SISTEMA -> Variáveis Personalizadas --> | |
<?php echo Mage::getModel('core/variable')->setStoreId(Mage::app()->getStore()->getId())->loadByCode('variable_code')->getValue('html');?> | |
<?php echo Mage::getModel('core/variable')->setStoreId(Mage::app()->getStore()->getId())->loadByCode('variable_code')->getValue('text');?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment