Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. Sitebuilder looks promising, does it have also ''How to'' videos on YouTube. So far I only seen video's in Spanish spoken.
  3. Konto bankowe edytuje w moduły - moduł Płatności elektroniczne v2.1.3 - z PrestaShop Akceptuj płatności przelewem, wyświetlając szczegóły konta podczas realizacji transakcji z tym że ten moduł odpwoiedzilany jest za podawanie numeru konta w podsumowaniu, może byc tak że ktoś na sztywno w temppates szablonu wstawił ręcznie ten numer i nie jest na zaciągany z danych modułu tylko ręcznie w kodzie wstawił i sadzę ze mógł to w tym przypadku tak wykonać
  4. Błąd 500 to błąd serwera ale zapewne spowodowany błędami w sklepie, a jakie błędy wpisuje przy włączeniu trybu debugowania ? https://www.presta-polskie-wsparcie.pl/strona/prestashop-jak-wlaczyc-tryb-debugowania
  5. take a look at the sunnytoo builder
  6. Hi. I am looking for module for my underwear shop. I want the customers can buy different sizes for underwear top and bottom on one product page. Thanks for help.
  7. Thank you for your critical opinion, now it it is getting more difficult for me to chose a new theme. 😉 Because I need a new theme too. I noticed at the demos of Asylum that navigating was a bit slow, but when I visit shops who used Asylum, their websites loaded faster. I really don't like the design of Warehouse themes and the developer wrote me that it is impossible to change frames with Elementor. Can you recommend a theme with another pagebuilder than Creative Elements and Elementor?
  8. I installed it from hostinger, automatic installation there is ssl
  9. Select Outlook > Preferences > Fonts. In the Default fonts for composing messages section select the Font button located next to the composition style you want to edit. For example, select Font next to New mail if you intend to specify a default text size for all new messages. https://anchorfonts.com/
  10. Today
  11. Re bonjour, Hé oui, la confusion est complète. Si j’avais su que je passais par une firme privée, je n’aurais pas acheté ce module. J’aurai priviliégé un module émanant de PrestaShop, s’il existe un. Un grand merci pour votre explication. Mais cela coince toujours. J’ai suivi le lien communiqué. J’arrive bien sur Contactez le développeur ! MigrationPro: Mise à niveau et Migration PrestaShop Je clique sur J’ai une question d’installation ou de configuration Je clique sur que cherchez-vous ? Je mets mon texte : J’ai acheté le module Prestashop Upgrade and Migrate tool pour passer de la version 1.7.11.8 à 8.2 MigrationPro: Mise à niveau et Migration PrestaShop par MigrationPro 4.7 (1262) Je ne sais pas comment configurer le URL du magasin Source J’ai téléchargé le connecteur de la passerelle J’ouvre le fichier migrationproserver Et je ne sais pas ce qu’il faut faire. La documentation n’est pas explicite à ce sujet. Cela me renvoie vers une page pour acheter des modules. Je reviens en arrière et je clique sur le lien installation et configuration de thèmes ou de modules Et là on me propose un ticket payant ! Je ne parviens pas à contacter le vendeur du produit.
  12. To be fair Creative elements is designed to make the site design user-friendly, not to create a super fast site. Compromises. You should really test your site with an external tool, such as 'Pagespeed Insights'. The profiler really just gives an indication of where savings might be made. You could also consider using Cloudflare and/or another CDN.
  13. Thank you, @Ryan1969 and @Markovo, for your answers. I've followed these steps. I'm using Ets Super Speed, which combines all of these methods to optimize speed. However, I'm still encountering the same problem with Creative Elements in the end, which block the website to load fast.
  14. Hi all, we are using Slider Revolution 6.2.22.5. When editing and saving a slide, the change is saved for the Slider Revolution, but not immediately shown in the frontend on the corresponding page. We have to additionally go to that page, start Elementor and save that page again, only then the changes to the Slide are shown in the frontend. Is this normal behavior? Can Slider Revolution be set up so it shows changes immediately in the frontend? With best regards!
  15. Sur la page de vente du module: https://addons.prestashop.com/fr/migration-donnees-sauvegarde/8934-migrationpro-mise-a-niveau-et-migration-prestashop.html?kw=migration pro prestashop&cpn=331862763&gad_source=1
  16. Et là on constate que le mélange Prestashop/Addons/Forum est complet. Pour info, Prestashop SA est une entreprise privée appartenant à MBE Logistics (Italienne) Addons est la plateforme "officielle" de Prestashop SA mais vous pouvez acheter des modules et des thèmes ailleurs, sur les sites des développeurs notamment. Le Forum appartient à Prestashop SA mais n'est animé que par des bénévoles (comme vous et moi), indépendants de l'entreprise Prestashop.
  17. Merci, Mais on les trouve où ces addons C'est affreux pour un néophyte comme moi. Soit disant cela va aller tout seul et c'est loin d'être le cas 1°En pièce jointe la saisie d’écran qui dit que j’ai téléchargé le module de votre addon 2° Puis le répertoire de ce téléchargement 3° L’ouverture de ce téléchargement 4° Le développement des fichiers contenus J’ai regardé dans tous les fichiers, il n’y a aucune url qui permet de faire le lien. Vous avez une idée ? Merci
  18. Buradaki temayı beğendim, yükledim admin is open the site does not open ERR_TOO_MANY_REDIRECTS this is the mistake how to fix
  19. It's only an SEO issue if it returns that permanently. Yandex doesn't know your planned maintenance, so warns you just in case it's an unintentional event/error From the RFC
  20. It isn't an error, just a warning and it won't affect the working of your store. You can also get these where themes use other php functions such as in_array. Basically the smarty project is removing all the php function wrappers from their code and this is advanced notice that this will happen. If it *really* bothers you, then you can create a smarty modifier plugin as a wrapper, although you'll need to give the modifier a slightly different name and then search and replace them in your theme template files. For example for the php function is_array you can create a new modifier called isarray e.g. create the file <yourtheme>/plugins/modifier.isarray.php: <?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsModifier */ /** * Smarty is_array php wrapper modifier plugin * Type: modifier * Name: isarray * Purpose: check whether input is an array or not and stop those pesky deprecation warnings * Input: * - Object|array: array or object to count * * @param mixed $$mixedInput input array/object * * @return bool */ function smarty_modifier_isarray($mixedInput) { /* * @see https://www.php.net/is_array * Returns true if value is an array, false otherwise. */ return is_array($mixedInput); } You would then search your theme and look for "is_array" e.g. a line like this: {if $product.customizations|is_array && $product.customizations|count} And you need to change it to the new modifier name which is: {if $product.customizations|isarray && $product.customizations|count} Then the warnings will stop (for that particular php function). Just need to repeat the process for any others, creating a modifier as appropriate.
  1. Load more activity
×
×
  • Create New...