Jump to content

nhelliwell

Members
  • Posts

    48
  • Joined

  • Last visited

Contact Methods

Profile Information

  • Location
    Colombia
  • Activity
    Project Owner

Recent Profile Visitors

4,563,851 profile views

nhelliwell's Achievements

Newbie

Newbie (1/14)

9

Reputation

2

Community Answers

  1. https://www.roja45.com/en/prestashop-promotions-and-marketing-modules/13-roja45-on-sale-products
  2. Am I being spectacularly dumb here, I can't see how to search in a forum, or sub-forum, this new design (except for the global search at the top)? I've been looking at this for 20mins now, I thought about using the search function to look for an answer but I fell into a circular loop and my brain melted...
  3. yeah, I've been thinking of doing this. Haven't got around to it yet, but my guess is that you'll need to add a new image size setting in the back office, and then change the section below in category.tpl to load the new image size: <div class="subcategory-image"> <a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'html':'UTF-8'}" title="{$subcategory.name|escape:'html':'UTF-8'}" class="img"> {if $subcategory.id_image} <img class="replace-2x" src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'medium_default')|escape:'html':'UTF-8'}" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" /> {else} <img class="replace-2x" src="{$img_cat_dir}default-medium_default.jpg" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" /> {/if} </a> </div>
  4. Here you go, lets see what they say: http://forge.prestashop.com/browse/PSCSX-3193
  5. This section at the top of product-list-tpl should do it. {if $page_name !='index' && $page_name !='product'} {assign var='nbItemsPerLine' value=3} {assign var='nbItemsPerLineTablet' value=2} {assign var='nbItemsPerLineMobile' value=3} {else} {assign var='nbItemsPerLine' value=4} {assign var='nbItemsPerLineTablet' value=3} {assign var='nbItemsPerLineMobile' value=2} {/if}
  6. Good question, I'd like to know this as well. We get release notes for a full release, but there seem to be plenty of updates coming through for core, and non-core modules, and I haven't seen a way to see a changelog via the back office. Since I have plenty of tweaks to these, in a custom theme, you just have to cross your fingers and hope for the best.
  7. Hi, Yeah, not a code issue. Hoster removed, or disabled, something in mod_security, and the problem went away. We'll work through it at some point to find exact cause, and/or solution.
  8. updated one installation to 1.6.0.9 this morning, get the same error when updating the translation for my own theme.
  9. This? { if($this->context->customer->id_default_customer==4) }
  10. yup, it's now working for me on a default 1.6.0.9 installation, and with same fixes, for that module only, applied to my own theme.
  11. that tutorial is editing the theme directly, the admin theme in 1.6 is certainly different to 1.5, though how much code has changed I'm not sure. You'll need something like this added to the information.tpl though it would be better to call the displayAdminProductsExtra hook and add it as a new tab. that way any updates prestashop make to their theme won't overwrite your changes. such as this: http://nemops.com/prestashop-products-new-tabs-fields/#.U9pZXGN418E
  12. Hi, I fixed that by disabling 'Accented URL' in Preferences -> SEO & URLS -> Set up URLs. (I think) Hooks not been called was just a log location problem, they were being called just fine.
  13. Hello, I'm getting an error when I try to display a customer order in the front office, any ideas?
×
×
  • Create New...