Jump to content

streletsky

Members
  • Posts

    5
  • Joined

  • Last visited

Profile Information

  • Location
    odessa
  • Activity
    Developer

streletsky's Achievements

Newbie

Newbie (1/14)

  • Week One Done Rare
  • One Month Later Rare
  • One Year In Rare

Recent Badges

0

Reputation

  1. hi, i have the same issue when updating id_address_delivery in my module. I managed to do this in Prestashop 1.7.6.5: private function updateOrderAddress($new_address_id) { global $context; $context->cart->updateAddressId( $context->cart->id_address_delivery, $new_address_id ); $context->cart->id_address_invoice = $new_address_id; $context->cart->save(); }
  2. on presta 1.7.6 you can just add to your theme for example your module css is in here [root]/modules/blocktags/views/css/[filename].css module should have hookDisplayHeader public function hookDisplayHeader($params) { $this->context->controller->addCSS($this->_path . 'views/css/[filename].css', 'all'); themes css should be here [root]/themes/your-theme/modules/blocktags/views/css/[filename].css
  3. This issue unfortunately even on the latest 1.6.1.x . If in the list of products click on column status for enabling inactive product, its status will be changed, but the product cannot be found in the front. Only way to make it visible to front is do activation (switch status to active) via product form and save it. Could you please checked what's wrong. If you need any additional information about my shop configuration, let me know. Thanks
  4. why do such complex replacing , which is limited on the one hand. This will be much better : CONCAT( LPAD( '', c.`level_depth` , '-' ) , cl.`name` ) AS name
  5. if you change something in module/blockcontact/translations/fr.php don't forget you have already cached one in cache/smarty/blockcontact/../../../
×
×
  • Create New...