Jump to content

blankpage

Members
  • Posts

    2
  • Joined

  • Last visited

Profile Information

  • Location
    Athens
  • Activity
    Other

blankpage's Achievements

Newbie

Newbie (1/14)

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

Recent Badges

0

Reputation

  1. Ok i found the solution for the pagination i replace the code at the bottom in file ---> modules/overrideproductslistwithmanufacturer/views/PrestaShop/Admin/Product/CatalogPage/Forms/form_products.html.twig from this <div class="col-md-12"> {{ render(controller('PrestaShopBundle:Admin\\Common:pagination', {'limit': limit, 'offset': offset, 'total': product_count_filtered, 'caller_parameters': pagination_parameters, 'limit_choices': pagination_limit_choices})) }} </div> to this <div class="col-md-12"> {{ render(controller('PrestaShopBundle:Admin\\Common:pagination', { 'limit': limit, 'offset': offset, 'total': product_count_filtered, 'caller_route': app.request.attributes.get('_route'), 'caller_parameters': pagination_parameters, 'limit_choices': pagination_limit_choices })) }} </div> and all its perfect now
  2. About solution of Stigz Its ok for me Tested in 1.7.7 and its fine. Only problem is with pagination. Just stop work (stack in 20 products and the number of page dont work). Any idea?
×
×
  • Create New...