skip to Main Content

How to know Magento theme name
like https://educationmalaysia.gov.my

2

Answers


  1. You can find by navigating to browser inspector (F12). There you search (CTRL+F to search) for something related to magento’s paths for example (catalog, skin, forntend etc.) then try finding where most on the skin css and js files are coming from for example: skin/frontend/COMPANY_NAME/THEME_NAME/. In most cases if the theme is not custom made, you will find it under the company name and the theme name. If you can’t find it, you can continue search some comments in the skin files in the theme js, css and etc.

    Login or Signup to reply.
  2. If you have access to the site go to http://yoursite.com/admin

    System > Configuration > General > Design > Packages

    System > Configuration > General > Design > Themes

    Or as already answered:

    https://stackoverflow.com/a/32627148/3650708

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search