Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save pablocattaneo/b8f226c75baeb266e654 to your computer and use it in GitHub Desktop.

Select an option

Save pablocattaneo/b8f226c75baeb266e654 to your computer and use it in GitHub Desktop.
Obtiene el ID de una categoría por su nombre. Get category ID filtering by name.
$category = Mage::getResourceModel('catalog/category_collection')->addFieldToFilter('name', 'clothing');
$cat= $category->getData();
$categoryid = $cat[0][entity_id];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment