Jump to content

gafonso

Members
  • Posts

    17
  • Joined

  • Last visited

Profile Information

  • First Name
    Gonçalo
  • Last Name
    Afonso

Recent Profile Visitors

209 profile views

gafonso's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi, is this still working in prestashop 1.7? Do i need to do something else to the theme.css file or just add that code to StylesheetManager.php? EDIT: forgot to delete app\cache\prod\class_index.php after the override. Working now!
  2. Upgrade the 1-click upgrade module before you upgrade to 1.7.1
  3. I found a way to fix the problem. This is what i've done: Go to theme folder/assets/js/theme.js and replace this code: (0, _jquery2['default'])('body').on('change', '#search_filters input[data-search-url]', function (event) { _prestashop2['default'].emit('updateFacets', event.target.dataset.searchUrl); }); (0, _jquery2['default'])('body').on('click', '.js-search-filters-clear-all', function (event) { _prestashop2['default'].emit('updateFacets', event.target.dataset.searchUrl); }); (0, _jquery2['default'])('body').on('click', '.js-search-link', function (event) { event.preventDefault(); _prestashop2['default'].emit('updateFacets', (0, _jquery2['default'])(event.target).closest('a').get(0).href); }); (0, _jquery2['default'])('body').on('change', '#search_filters select', function (event) { var form = (0, _jquery2['default'])(event.target).closest('form'); _prestashop2['default'].emit('updateFacets', '?' + form.serialize()); }); with this: (0, _jquery2['default'])('body').on('change', '#search_filters input[data-search-url]', function (event) { _prestashop2['default'].emit('updateFacets', event.target.dataset.searchUrl); setInterval('window.location.reload()', 1000); }); (0, _jquery2['default'])('body').on('click', '.js-search-filters-clear-all', function (event) { _prestashop2['default'].emit('updateFacets', event.target.dataset.searchUrl); setInterval('window.location.reload()', 1000); }); That's it! All works fine now!
  4. There's a problem adding to the cart, if you use a search filter like the included faceted search or if you press to show the next page in product list it doesn't add products until you refresh the page. Any way to fix this? I guess forcing to refresh the page would work, but i have no idea where to do this. Here is a video of the problem:
  5. EDIT: Just found out this can be edited in theme.css, around line 6164: #products .thumbnail-container:hover .highlighted-informations.no-variants, .featured-products .thumbnail-container:hover .highlighted-informations.no-variants, .product-accessories .thumbnail-container:hover .highlighted-informations.no-variants { bottom: 5.375rem; } What about only accepting integer numbers in the quantity?
  6. This happens in your video too. When you hover the product, the quick view doesn't show the product attributes (colors in your case). In my website: http://www.jetprint.pt/index.php?id_category=63&controller=category
  7. Hi, this is great stuff but i have a little problem. The quick view thingy gets hidden underneath the product description. How can we fix this? I've been toggling around with the height and position in #products .thumbnail-container, but can get it right. Also, how can i make it accept only integer numbers?
  8. Same problem here. Also i cant add new block to the link widget. This happens:
  9. Thanks but what i want is the image showing on the submenu when i hover the top menu.
  10. Hi, I'm using prestashop 1.7 default theme and i want to add images to the sub-menu like in this site: http://www.sparesworld.net/gb/ I added the menu thumbnail and category thumbnail to the top category in the backoffice but it doesn't show on the sub-menu like in that site. Shouldn´t this work? Or do i need to change something in the theme.css?
×
×
  • Create New...