Jump to content

originmad

Members
  • Posts

    5
  • Joined

  • Last visited

1 Follower

Profile Information

  • Activity
    Developer

Recent Profile Visitors

909,002 profile views

originmad's Achievements

Newbie

Newbie (1/14)

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

Recent Badges

1

Reputation

  1. Vekia solution is right but missed one parameter: You need to specify the number of random products if you set random products to "true" $random_number_products Number of products to return if random is activated $category_products = $category->getProducts($this->context->language->id, 1, 100,null,null,null,true,true,100); /* 100 products max. */ will work. It's been too long but someone may need this.
  2. Hi there, I think i figured it out for 1.6.1.13. I'm not php developer. There might be problem on code quality but its working $image_url = ''; $image = Product::getCover((int)$id_product); if (sizeof($image) > 0) { $image_type = 'large_default'; $image_url = $context->link->getImageLink($product->link_rewrite, $id_product.'-'.$image['id_image'], $image_type); } $template_vars = array( '{product}' => (is_array($product->name) ? $product->name[$id_lang] : $product->name), '{product_link}' => $product_link, '{image_url}' => $image_url );
  3. I had same issue and finally solved it. Slider disappear because of that module not hooked correctly. ( like daveyrow said). If anyone experience same issue that daveyrow solution is correct but not enough. You need to find below code public function hookdisplayTop($params) { return $this->hookdisplayTopColumn($params); } and need to add same for your new module position ( add below code) public function hookactionShopDataDuplication($params) { return $this->hookdisplayTopColumn($params); } after change navigate to admin -> ovic theme config -> layout builder -> Configure ( your current layout) from this page you can easily override your module hook position with new one (Hover over module and select override hook) * Maybe the last step is unnecessary but i couldn't test it.
  4. Hi Camillie Thank you for response.. With nginx configuration problem is solved. Thank you.
  5. I have exactly same issue. I did fresh install to my dedicated server. And it's working fine. I can access to module and products page from backoffice. But when i try to install local server. It installed correctly but cant reach products and modules page from backoffice. It redirects me to frontpage. I tried on php 7.0.12 and 5.5.38. But same result. And it s really working slow on local server. Keep waiting and then redirecting to frontpage. I think something misconfigured but dont have any error message.
×
×
  • Create New...