Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

spectre

Users
  • Posts

    6,006
  • Joined

  • Last visited

Everything posted by spectre

  1. это чудесный модуль аякс-пагинации который несовместим ни с чем
  2. надо $this->document->setKeywords(''); или вообще убрать этот кусок, будет if ($page == 1) $this->document->setKeywords($category_info['meta_keyword']);
  3. поиском по vqmod/xml ищете вхождение header.php потом отключаете их все (переименовать в название файла.xml_) и включаете по очереди обратным переименованием в название.xml после которого сломалось тот и папа открываем его - смотрим-лечим
  4. вы скорее всего не создали доп поля в базе, либо удалите их полностью из структуры - тогда модуль создаст или просто ALTER TABLE `oc_product` ADD COLUMN `entry_4` VARCHAR(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, ADD COLUMN `entry_text_4` VARCHAR(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, ADD COLUMN `entry_5` VARCHAR(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, ADD COLUMN `entry_text_5` VARCHAR(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, ADD COLUMN `entry_6` VARCHAR(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, ADD COLUMN `entry_text_6` VARCHAR(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL
  5. в общем человек четко знает что это стоит 250 рублей
  6. бежать сломя голову с хостингера и начать понимать что бесплатный сыр только в мышеловке
  7. добавьте каноникал после $page==2 но я бы посоветовал сначала ссылку почитать которая сверху этого когда
  8. На хостингере у вас каждые 20 минут такое будет
  9. // http://googlewebmastercentral.blogspot.com/2011/09/pagination-with-relnext-and-relprev.html if ($page == 1) { $this->document->addLink($this->url->link('product/category', 'path=' . $category_info['category_id'], true), 'canonical'); } elseif ($page == 2) { $this->document->addLink($this->url->link('product/category', 'path=' . $category_info['category_id'], true), 'prev'); } else { $this->document->addLink($this->url->link('product/category', 'path=' . $category_info['category_id'] . '&page='. ($page - 1), true), 'prev'); } if ($limit && ceil($product_total / $limit) > $page) { $this->document->addLink($this->url->link('product/category', 'path=' . $category_info['category_id'] . '&page='. ($page + 1), true), 'next'); }
  10. Ищете в catalog/controller/common/footer.php что-то такое $this->data['powered'] = sprintf($this->language->get('text_powered'), $this->config->get('config_name'), date('Y', time())); и меняете на что-то такое $this->data['powered'] = sprintf($this->language->get('text_powered'), $this->config->get('config_name'), '2014'); если двойка то просто $data
×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.