Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2.  
  3. $objectManager = MagentoFrameworkAppObjectManager::getInstance();
  4. $category_id = 'your_category_id';
  5. $collection = $objectManager ->get('MagentoCatalogModelCategory')->load($category_id);
  6. $collection->setData('is_active', 0);
  7. $collection->save();
  8.  
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement