Wprowadzone przez Kornel Kosoń

Usuwanie kategorii z bazy Magento

W przypadku sklepów z rozbudowaną strukturą kategorii ręczne ich usuwanie może okazać się dość czasochłonne. W celu przyspieszenia sobie pracy warto wykonać tego typu operację bezpośrednio w bazie danych. W tego typu przypadkach można skorzystać z listy następujących komend: TRUNCATE TABLE `catalog_category_entity`; TRUNCATE TABLE `catalog_category_entity_datetime`; TRUNCATE TABLE `catalog_category_entity_decimal`; TRUNCATE TABLE `catalog_category_entity_int`; TRUNCATE TABLE `catalog_category_entity_text`; TRUNCATE […]

Own Magento translations file

  As to translate particular phrases, these must be saved in files which contains a form of proper string:   1 < ?php echo $this->__(‘our phrase’;) ?>   As to translate above string, it is necessary to made create easy module. As to make it in app/code local cataloque, we have to create proper cataloques […]