Jump to content

kamppa

Members
  • Posts

    38
  • Joined

  • Last visited

Profile Information

  • First Name
    Kamo
  • Last Name
    Mondo

Recent Profile Visitors

478 profile views

kamppa's Achievements

Apprentice

Apprentice (3/14)

  • Conversation Starter Rare
  • Dedicated Rare
  • Reacting Well Rare
  • First Post Rare
  • Collaborator Rare

Recent Badges

3

Reputation

  1. I am sorry but I am total noob when it comes to arrays etc. I am fine with editing .tpl files but I don't know what to change to show the other image.
  2. What I mean is that how can this image that is shown for product not be the default cover image but second image? https://ibb.co/gms6JDV
  3. I was unable to do this with Prestashop 8. I found a Javascript method here: https://www.sunnytoo.com/forums/topic/disable-click-on-parent-category-in-the-menu jQuery(function($){ $('.ml_level_1').has('ul.mu_level_2').find('.ma_level_1').addCSS({'pointer-events': 'none', 'cursor': 'default'}); }); I just can't figure out the correct CSS classes to replace those .ml_level_1 etc. ChatGPT gave an alternative if jQuery is not in use: document.addEventListener('DOMContentLoaded', function() { var level1Elements = document.querySelectorAll('.ml_level_1'); level1Elements.forEach(function(level1Element) { if (level1Element.querySelector('ul.mu_level_2')) { var maLevel1Elements = level1Element.querySelectorAll('.ma_level_1'); maLevel1Elements.forEach(function(maLevel1Element) { maLevel1Element.style.pointerEvents = 'none'; maLevel1Element.style.cursor = 'default'; }); } }); }); Can someone please figure out the correct classes?
  4. How can I show second image on categories page as thumbnails? product-thumb-tpl has this: <img {if $product.default_image} data-full-size-image-url="{$product.default_image.large.url}" {generateImagesSources image=$product.default_image size='home_default' lazyload=true} alt="{if !empty($product.default_image.legend)}{$product.default_image.legend}{else}{$product.name|truncate:30:'...'}{/if}" width="{$product.default_image.bySize.home_default.width}" height="{$product.default_image.bySize.home_default.height}" {else} src="{$urls.no_picture_image.bySize.home_default.url}" alt="{$product.name|truncate:30:'...'}" width="{$urls.no_picture_image.bySize.home_default.width}" height="{$urls.no_picture_image.bySize.home_default.height}" {/if} class="img-fluid rounded lazyload" /> But I don't know what should be instead of $product.default_image to show the second image?
  5. Thank you! Both are great news. If you can include Google and Facebook ads information using API it would be a game changer for Prestashop profitability tracking.
  6. This module does look very promising. "90% of the reports offered by our module use data already present in your store." Is this module dependent on other statistics modules installed with Prestashop? I have disabled most of the statistics module to avoid filling up the database. Is there a particular reason why not integrate directly with Google Ads so to avoid manually typing daily marketing costs?
  7. Hello, I have Prestashop installation on server root (www folder in OVH) folder working correctly. I want to use the same server for another Prestashop installation which is installed in folder www/prestashop2 I have linked the prestashop2.com domain to server in OVH multisite settings and domain root folder in OVH settings points to www/prestashop2 Is this the correct way? What settings should I use in URL settings to get prestashop2.com domain to point to the shop and shop working correctly? I have tried different settings but I can't get it to work. Edit: Problem solved. You should not use www/prestashop2 but move prestashop2 to the same level as www folder to the real root of server..
  8. This has a lot of good reviews but unfortunately is not working with Prestashop 8.
  9. I am most interested in basic calculations for profit: Sales (without tax) -cost of goods sold -advertising costs (from Google Ads) -fixed costs per order (manually adjustable to count for miscellaneous costs)
  10. Hello, Glad to see a module like this. However please add Google Ads integration. This is essential for profit calculation.
  11. Found a great module with conditional fields: https://addons.prestashop.com/en/contact-forms-surveys/89894-interactive-form-builder-create-dynamic-forms.html
  12. Did you find any form builders or did you use something more general? I could not find any module with conditional logic forms. Let's say if a user selects B from dropdown list of A, B, C then a new set of selections and text will appear under it compared to if they had selected A. There are such apps for Shopify so it is a shame none exist for Prestashop.
×
×
  • Create New...