Jump to content

hzolika

Members
  • Posts

    16
  • Joined

  • Last visited

About hzolika

  • Birthday 11/22/1981

Profile Information

  • Location
    United Kingdom
  • Activity
    Developer

hzolika's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi All, My webshop is using Sagepay and the invoices will be generated in Sage and then posted or e-mail to the customers. This means I don't want Prestashop to send it's own invoice. How can I disable the invoice sending option, or modify the code to disable this? Thanks in advance!
  2. Hi, I'm trying to change to position for the categories in the top menu, but it doesn't seem to work. Actually it works for the sub-categories, but not for the ones linked to the Home category. The attached images show the problem. It's the "Used Printers & Equipment" I want to be on the 3rd place, as it set in the back office, but regardless, on the website it still comes up on the 5th place. (Ignore the "Spare Parts & Materials" at the end, that's hard coded.) Any idea why it doesn't let me do it? Thanks
  3. Hi sandipchandela, Thanks for the suggestion, I have removed the <script> tags from that file, I'm hoping that Google Analytics will work properly now :-) Although, the banner is still doing the same thing :-(
  4. Hi, We have had our website working perfectly for months, but last week we noticed that the image slider is not loading up, just keeps showing the little loading circle icon. I've tried to disable the module and enable it again, update it, tried different browsers and different PCs on different locations, but the problem still persists. When I open the code in Google Chrome, I can see the images are there, but they don't load up. Website is http://www.josero.com Anyone with an idea? Thanks!
  5. I wanted to do the same. It's a bit more tricky. My way was this: Created new col-md-.. classes in the global.css .col-md-23 { width: 20%; } You have to add this everywhere between .col-md-2 and .col-md-3. After that you can change the product-list.tpl to this: {if $page_name !='index' && $page_name !='product'} {assign var='nbItemsPerLine' value=4} {assign var='nbItemsPerLineTablet' value=2} {assign var='nbItemsPerLineMobile' value=3} {else} {assign var='nbItemsPerLine' value=5} {assign var='nbItemsPerLineTablet' value=3} {assign var='nbItemsPerLineMobile' value=2} {/if} nbItemsPerLine to 4 and 5 Then <li class="ajax_block_product{if $page_name == 'index' || $page_name == 'product'} col-xs-12 col-sm-4 col-md-23{else} col-xs-12 col-sm-6 col-md-3{/if}{if $smarty.foreach.products.iteration%$nbItemsPerLine == 0} last-in-line{elseif $smarty.foreach.products.iteration%$nbItemsPerLine == 1} first-in-line{/if}{if $smarty.foreach.products.iteration > ($smarty.foreach.products.total - $totModulo)} last-line{/if}{if $smarty.foreach.products.iteration%$nbItemsPerLineTablet == 0} last-item-of-tablet-line{elseif $smarty.foreach.products.iteration%$nbItemsPerLineTablet == 1} first-item-of-tablet-line{/if}{if $smarty.foreach.products.iteration%$nbItemsPerLineMobile == 0} last-item-of-mobile-line{elseif $smarty.foreach.products.iteration%$nbItemsPerLineMobile == 1} first-item-of-mobile-line{/if}{if $smarty.foreach.products.iteration > ($smarty.foreach.products.total - $totModuloMobile)} last-mobile-line{/if}"> It should work. Works for me though.
  6. Hi, My question is if there's any way of displaying different number of products in a line on different screen sizes. What I want to do is use the almost the whole width of the window on wider screens like 22" monitors. I know there's that the grid can be changed to show 6 products in a line on the main page, but I only want 5 on wide screens, and 4 on not as wide screens (19"). I found the rules in the product-list.tpl, and it's nicely changing the number of products in a line when I change the window size to tablet and mobile width, but I couldn't work out how it does it. Can someone give me some hints how to do this? Thanks, Zoli
  7. Here are the files modified. ObjectModel.php goes to ../classes/ AdminImportController.php goes to ../controllers/admin/ Just overwrite the old files. ObjectModel.php AdminImportController.php
  8. Thanks for this. Yes, it fixes the problem in a way that the installation will finish, but then for me both the front and back office dies with an Internal Server Error. It might be something else, related to the server setting. Let's see what the others say.
  9. Hi, I'm having an error during installation at 45%. This is the Configure shop information stage. I've tried to reinstall it again, after deleted the tables in the database, and also tried to create a new database but the error always comes up at 45%. I've successfully installed 1.5 before on the same server with no issues. Any idea what causes it? Thanks
  10. Sorry for the delay, I didn't notice there was an answer. Well, PHP is not unknown to me, but I'm not an expert either. Which controller(s) should I look for? Will see if I can do something. About he attached modules, I guess it could be worked around by changing the references?
×
×
  • Create New...