https://www.digitalocean.com/community/tutorials/how-to-set-up-apache-virtual-hosts-on-ubuntu-14-04-lts In Magento 1.x, you could call/print any module’s template block in any other template (phtml) file with the following code: 1 2 3 4 echo $this->getLayout() ->createBlock('newmodule/newblock') ->setTemplate('newmodule/newblock.phtml') ->toHtml(); In Magento 2.x, it’s slightly different. Below is the...
Day: July 20, 2016
Magento 2: Get Store Information (Store ID, Code, Name, URL, Website ID)
http://blog.chapagain.com.np/magento-2-get-store-information-store-id-code-name-url-website-id/ This article shows how we can get store information in Magento 2. We will be fetching store id, store code, store name, store url, and store’s website id. We also write a function which checks if the store is...
Magento 2: Get Currency Code, Currency Symbol & Currency Rate
http://blog.chapagain.com.np/magento-2-get-currency-code-currency-symbol-currency-rate/ Tis article shows how we can get our store’s currency code, currency symbol, and currency rate in Magento 2. We will be fetching all base, default and current currency code. We will also be fetching available currency codes and...
How To Set Up Apache Virtual Hosts on Ubuntu 14.04 LTS
How To Set Up Apache Virtual Hosts on Ubuntu 14.04 LTS https://www.digitalocean.com/community/tutorials/how-to-set-up-apache-virtual-hosts-on-ubuntu-14-04-lts Introduction The Apache web server is the most popular way of serving web content on the internet. It accounts for more than half of all active websites on...