Magento 2 New CMS Pages Not Loading

Anytime I add a new CMS page from the admin dashboard, it Magento generates a no-route 404 page not found error. After days of meticulous troubleshooting across multiple installs and versions of Magento 2.x.x, I’ve discovered a one way to … Continued

Install Magento PHP7.0 Extensions

Here’s a list off all the Magento 2 extensions required for running PHP7.0 on Ubuntu / Debian (not including mysql or php7). sudo apt-get install php7.0-curl php7.0-gd php7.0-intl php7.0-mcrypt php7.0-soap php7.0-xml php7.0-zip php7.0-json php7.0-xsl php7.0-ImageMagick php7.0-mbstring openssl Assumptions: PHP 7.0 … Continued

Magento 2 CLI Install Ubuntu 14.04

Stuck on the first steps of the CLI install for your Magento 2 project?   This is the terrible documentation provided by Magento. http://devdocs.magento.com/guides/v2.0/install-gde/install/cli/install-cli.html   Here’s how you quickly setup Magento CLI so you can use the command magento instead of … Continued

Magento 1.9 .gitignore Example

A boilerplate starting point for creating a .gitignore file on your Magento CE Version ~1.9 project. .htaccess.sample .modgit/ .modman/ app/code/community/Phoenix/ app/code/community/Cm/ app/code/core/ app/design/adminhtml/default/default/ app/design/frontend/base/ app/design/frontend/rwd/ app/design/frontend/default/blank/ app/design/frontend/default/default/ app/design/frontend/default/iphone/ app/design/frontend/default/modern/ app/design/frontend/enterprise/default app/design/install/ app/etc/modules/Enterprise_* app/etc/modules/Mage_All.xml app/etc/modules/Mage_Api.xml app/etc/modules/Mage_Api2.xml app/etc/modules/Mage_Authorizenet.xml app/etc/modules/Mage_Bundle.xml app/etc/modules/Mage_Captcha.xml app/etc/modules/Mage_Centinel.xml app/etc/modules/Mage_Compiler.xml … Continued

Display specific product attribute on Magento product page

Change $_description_eng to whatever the attribute ID is of the attributes you would like to control the display of manually/outside of “Additional Information” block.

 

Echo current product category name on single product detail page in Magento

Get the current category name on your current product/product detail page in Magento.

  Change [0] to [1] to get the 1st child level category.