Jump to content

Prestachamps

Members
  • Posts

    1,104
  • Joined

  • Last visited

  • Days Won

    32

Everything posted by Prestachamps

  1. Hi @Derick63, as I see, you have uploaded from Github the files from the latest Development version, and not the files of your version of Prestashop . You should use the files from the Github for your PS version: I hope that I could help. Have a nice day, Leo.
  2. Hi @Nishikidori, as I am seeing it, you have the product name displayed twice, both using separate H1 tags. Most probably you should remove one of them from the tpl file usually from \themes\classic\templates\catalog\product.tpl Cheers, Leo
  3. Hi @Nishikidori, can you send me your URL where you have the double H1, so I can help you with the H1 elements. Cheers, Leo
  4. Hi @Nishikidori This depends on the theme you have. In the default prestashop "classic" theme there is no link on the last breadcrumb item, the breadcrumb.tpl looks like this: {** * Copyright since 2007 PrestaShop SA and Contributors * PrestaShop is an International Registered Trademark & Property of PrestaShop SA * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License 3.0 (AFL-3.0) * that is bundled with this package in the file LICENSE.md. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/AFL-3.0 * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to [email protected] so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to https://devdocs.prestashop.com/ for more information. * * @author PrestaShop SA and Contributors <[email protected]> * @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) *} <nav data-depth="{$breadcrumb.count}" class="breadcrumb hidden-sm-down"> <ol itemscope itemtype="http://schema.org/BreadcrumbList"> {block name='breadcrumb'} {foreach from=$breadcrumb.links item=path name=breadcrumb} {block name='breadcrumb_item'} <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem"> {if not $smarty.foreach.breadcrumb.last} <a itemprop="item" href="{$path.url}"><span itemprop="name">{$path.title}</span></a> {else} <span itemprop="name">{$path.title}</span> {/if} <meta itemprop="position" content="{$smarty.foreach.breadcrumb.iteration}"> </li> {/block} {/foreach} {/block} </ol> </nav> There is an if statement that does not include the link for the last breadcrumb element: {if not $smarty.foreach.breadcrumb.last} <a itemprop="item" href="{$path.url}"><span itemprop="name">{$path.title}</span></a> {else} <span itemprop="name">{$path.title}</span> {/if} Try adding this if - else statement to your breadcrumb based on the code above.tpl and should function as expected. Cheers, Leo
  5. Hi @ShainaGC Try to add "!important" after the "display: none" and don't forget to clear the cache from your BO. .product-add-to-cart .control-label { display: none !important; } I hope that I could help. Have a nice day, Leo.
  6. Hello, Please send some information about your Prestashop, which could help us to give you a more accurate response. Can you please specify which Prestashop version you are using? Also, let us know if you are using the standard Prestashop checkout or a third-party checkout module. Have a nice day, Leo.
  7. Hello, In Prestashop 8, there is a global setting also for the low-stock products (Display remaining quantities when the quantity is lower than), not only for each separate product on the products details page. At the Shop parameters > Product settings > Products stock, you need to set 0 this setting to avoid the "Last remaining items" text: https://prnt.sc/8pYKY1gZI_D5 I hope that I could help. Have a nice day, Leo.
  8. Hi @LiliCraft, Have you searched the /var/logs folder for any hints about a warning or an undefined variable? since the issue mostly certainly occurs after the email is sent. To be sure the problem is not with SMTP, you might also try sending the contact via sendmail rather than SMTP. Check to see if the contact form module has a newer version in Module manager -> updates, and check if it's working without error after updating it. You can try disabling any contact modules or rsubscription-type modules if you have these because one of them might be to responsible for the error you received after sending the email. Alternately, simply disable the non-Prestashop modules and/or overrides from the BO-> Performance page and test it again. Have a nice day, Leo.
  9. Hi @By Sami, You most likely have a second subcategory widget or block in your tpl for your theme. Alternately, you may have a module that uses the displayHeaderCategory hook to show the lower subcategories. Check this for the module that is hooked in this hook under Bo-> Display-> Positions. Have a nice day, Leo.
  10. Hi @Fred Peng, for the image in the header BO are used two images: /ADMINFOLDER/themes/default/public/fbc2a379fdad6d5a1b10c881644bc5dd.png and /ADMINFOLDER/themes/new-theme/public/fbc2a379fdad6d5a1b10c881644bc5dd.png I hope that I could help. Have a nice day, Leo.
  11. Hi @DARKF3D3, If you're using the Classic theme, the file themes/classic/templates/ partials/breadcrumb.tpl shows the breadcrumb. Since it is usually used on all pages where it is shown, you can set up a condition in TPL to check the variable $page["page name"] and not show the breadcrumb on those pages. I hope that I could help. Have a nice day, Leo.
  12. Hi @Jolsvi 1: Try making another order manually using a different payment method. It's probable that the payment module isn't making the order correctly. 2: On this error page, click the [9 Arguments] of the Validateorder function to see which of the parameters are not being sent to the validateOrder function correctly. 3: Do a test by first turning off all overrides and modules that aren't from Prestashop (from the BO performance page) and then making a similar order. Check the error logs and exception logs in the var/log/ folder for any hints (Warnings on undefineg values) about missing or wrong parameters. Have a nice day, Leo.
  13. Hi @Andy C, Have you tried saving the SEO&URL BO page again so that the.htaccess file can be regenerated again correctly? I hope that I could help. Have a nice day, Leo.
  14. Salut @eric vzseggse Essayez de modifier le \themes\{votre thème}\templates\catalog\listing\product-list.tpl Ici, vous pouvez commenter ou supprimer le bloc suivant comme ceci : Avant: <div id="js-product-list"> {capture assign="errorContent"} <h4>{l s='No products available yet' d='Shop.Theme.Catalog'}</h4> <p>{l s='Stay tuned! More products will be shown here as they are added.' d='Shop.Theme.Catalog'}</p> {/capture} {include file='errors/not-found.tpl' errorContent=$errorContent} </div> Après: <div id="js-product-list"> {* {capture assign="errorContent"} <h4>{l s='No products available yet' d='Shop.Theme.Catalog'}</h4> <p>{l s='Stay tuned! More products will be shown here as they are added.' d='Shop.Theme.Catalog'}</p> {/capture} {include file='errors/not-found.tpl' errorContent=$errorContent} *} </div>
  15. Hi @powerdada2, From Display->Position, you should check your modules that are hooked into the hook displayAfterBodyOpeningTag. Most likely, one of those modules is returning 1 or true, which shows it as "1." As @Fred PrestaHeroes suggested, try turning off those modules one by one until the "1" goes away to find out which one it is. I hope that I could help. Have a nice day, Leo.
  16. Witam, Zgadnij, że używasz reguły koszyka, aby zaoferować zniżkę 10 zł. Reguły koszyka mogą być stosowane do samej sumy koszyka, a nie do jednego konkretnego produktu w koszyku. Życzę miłego dnia, Leo.
  17. Bonjour, C'est parce qu'il affiche la quantité du produit placé dans le panier. Si vous souhaitez afficher la quantité en stock, vous devez utiliser les variables {$product.quantity_available} ou {$product.stock_quantity} : Jetez un coup d'œil : https://prnt.sc/H3QBOafTCCpE https://prnt.sc/ZLwSpENhhCs7 J'espère avoir pu vous aider. Bonne journée, Leo.
  18. Bonjour, Il semble que vous utilisiez un module ou une solution tierce pour charger l'image mentionnée, et qu'elle soit également chargée à partir d'une source en ligne : https://prnt.sc/uiC_q1VcWT7e https://prnt.sc/NXWG_uVlFydh Il serait préférable que vous essayiez de détecter ce qui charge l'image de la catégorie de cette manière et que vous le changiez pour charger la taille d'image que vous avez mentionnée. J'espère avoir pu vous aider. Bonne journée, Leo.
  19. Hello @Panzerkampf You can replace the "description": "{$page.meta.description}", with the following code which will use the product description truncated to a 150 character max length text in case of the meta description is empty: "description": "{if !empty($page.meta.description|strip:"")}{$page.meta.description|regex_replace:"/[\r\n]/" : " "}{elseif !empty($product.description|strip:"")}{$product.description|strip_tags:false|regex_replace:"/[\r\n]/" : ""|truncate:150 nofilter}{/if}", I hope that I could help. Have a nice day, Leo.
  20. Hi @marada You can check for an incorrect html opening/closing tag in the backoffice at the configuration of the Customer data privacy block module which displays the Customer data privacy text. The Sign up for our newsletter text can be modified at the configuration of Newsletter subscription the module; this should not contain any html tags, only text. I hope that I could help. Cheers, Leo
  21. Hi, Did you try to assign the parent category from the subcategory to its original parent category (I guess it was the Home category), as it was before the accident? I hope that I could help. Have a nice day, Leo.
  22. Hello, The warning means that the first parameter is an array instead of a string. You can try to dump the value of this variable to see what it looks like: {$_smarty_tpl->tpl_vars['position']->value|dump} or on PS 1.6 {$_smarty_tpl->tpl_vars['position']->value|var_dump} Also, these are cache files, and you probably need to solve the issue in the original files, so try to turn off and delete the smarty cache and check the errors in the original, not cached, tpl files. I hope that I could help. Have a nice day, Leo.
  23. Hello, I guess that with the import, the calculations for the tax-included values weren't triggered for these products, or something is missing from the import document (like, an example, the Tax Rule ID). This calculation is called when you hit the save button on the product edit page and resolves this price issue. You can try to check what happened in the /var/log files or in the server log if this issue appears only for some products. Also, you can try to import the values again only for one product where this issue appears to see if it imports now correctly. I hope that I could help. Have a nice day, Leo.
  24. Hello, Did you try to create the child theme manually via FTP? Does the same issue appear? I hope that I could help. Have a nice day, Leo.
  25. Hallo, Hochladen Maximale Dateigröße kann im Backoffice unter Erweiterte Parameter > Informationen eingesehen werden. Es ist wahrscheinlich in den Servereinstellungen falsch konfiguriert. Dies kann leicht über cPanel geändert werden. Ich schlage vor, Sie wenden sich an das Hosting-Unternehmen, um es zu erhöhen, oder Sie können es anhand der folgenden Informationen selbst versuchen. https://www.prestasoo.com/blog/how-to-increase-maximum-upload-file-size-in-prestashop#:~:text=The default settings will restrict,upload_max_filesize and 2 other values. Ich hoffe, dass ich helfen konnte. Schönen Tag noch, Leo.
×
×
  • Create New...