Jump to content
thirty bees forum

Yabber

Trusted Members
  • Posts

    111
  • Joined

  • Last visited

  • Days Won

    17

Everything posted by Yabber

  1. Adapting the prestashop 1.6 theme to thirtybees with PHP 8.3 is a very simple job. For example, the original default-bootstrap template has only a few errors, including two critical errors in the “blockcart” module templates. On the other hand, the modules sold on prestashop addons are a different topic. It can be said that all modules sold there have some major or minor errors. And it doesn't matter the PHP version. And the Vietnamese and Indian modules sold together with the themes are the ones with millions of bugs 🙂
  2. Such an approach will result in a store with no integration with any external services, and the only payment method in the store will be only traditional bank transfer. Currently written PHP libraries most often require a minimum of PHP 8+, and no one writes software for such ancient PHP versions as 4, 5 or 7.
  3. The 'mailalerts' module passes the {message} variable to the template email 'new_order' sent to the store admin. Check in this email template if you have such a variable.
  4. Yabber

    Export CSV?

    Looking at your store https://bountyhuntertoys.com/store/ it is clear to me that absolutely NOTHING in this store has been configured. Starting from such basics as enabling friendly URLs or anti-spam protection of the contact form. Also switching to a paid SaaS might be a good option, pay $300 a month, then at least the basic configuration will be done for you by shopify support. As for migration, exporting data from thirtybees to CSV will not help you at all. You need to be very knowledgeable about the database structure of both applications to properly map the data. Also, it is best to pay a few hundred dollars and have the migration done by a company that will do it properly. For example, Cart2Cart: https://www.shopping-cart-migration.com/provided-services/data-migration-service-packages And such a note that the migration does not transfer customer passwords, also all your customers will have to reactivate their accounts.
  5. @DRMasterChief In blockcart.tpl template, change: {assign var='free_ship' value=count($cart->getDeliveryAddressesWithoutCarriers(true, $errors))} to: {assign var='free_ship' value=count($cart->getDeliveryAddressesWithoutCarriers(true))}
  6. @the.rampage.rado The order of attribute combinations in the product configuration has no meaning. If I change the “Position” in the attribute values then the order on the store front changes identically.
  7. I checked on TB 1.6 and sorting attribute values in BO by “Position” also works correctly on the front end on the product page.
  8. @DRMasterChief The code you provided in the first post is about features, not attachments. And can't you use this futures functionality to present this additional product data? Instead of making some weird modifications to the attachments functionality.
  9. Is it possible that we configure a different server and SMTP account in the module than we have in the “Mail via PHPmailer” module and the module uses those settings to send its emails?
  10. Domain is let go by cloudflare, and cloudflare caches static resources for a long time. We should clean cloudflare's cache after changes to the site.
  11. And I don't see any blocking by google: https://search.google.com/test/rich-results/result?id=M20EMayXf6pc4Bni8FkF7A&hl=pl
  12. SwiftMailer is no longer supported and developed: https://github.com/swiftmailer/swiftmailer
  13. There are a lot of modules for prestashop with security vulnerabilities: https://security.friendsofpresta.org/ Before installing any module, you need to check it for security vulnerabilities.
  14. It's not about email marketing modules but about mail transport module. Install and configure the "Mail via PHPmailer" module.
  15. php7.4-xml is a package of several modules. This package provides the DOM, SimpleXML, XML, and XSL module(s) for PHP. And what does phpinfo() say? Do you have the SimpleXML module loaded?
  16. This is not possible, it would require a very serious modification of the thirtybees engine. And it would cause serious problems in the operation of the store, because, for example, all electronic payment gateways require customer address data. Only bitcoin payments can be anonymous.
  17. Install Lua module to nginx, you will have nginx with htaccess support: https://github.com/e404/htaccess-for-nginx?tab=readme-ov-file
  18. @wakabayashi From my tests, it seems that for AVIF format, Imagick gets better compression, and for WEBP format, GD library has better compression. It might also be worth adding support for Imagick to ImageManager class?
  19. On prestashop addons there is a version 4.5.4 for PS 1.6.1 https://addons.prestashop.com/en/payment-card-wallet/40307-mollie-payments.html I don't have a Mollie account and I haven't tested it with thirtybees, well, and it's not clear how there with the compatibility of it with PHP 8.
  20. Bleeding edge is a development version available as a repository on github: https://github.com/thirtybees/thirtybees And you could say that every day is different. You can perform an upgrade of your thirtybees to Bleeding edge by changing the Core Updater configuration:
  21. @datakick After my tests of the latest version of "bleeding edge", I think that the support of system images in WEBP and AVIF formats already works very nicely. However, I noticed that some native modules have their own limitations when it comes to uploading image files. For example, the "homeslider" module: const ALLOWED_EXTENSIONS = [ 'jpg', 'jpeg', 'gif', 'png' ];
  22. On the "Download Thirtybees" page in the "Server Requirements" section there is incorrect information misleading users who want to install Thirtybees.
  23. And check still in Preferences -> Store Contact: "Shop email". As you have different email addresses in each place of configuration, then there are such problems.
  24. In Customers -> Contacts you have the wrong mailing addresses.
  25. Error 500 is a general server error that doesn't say anything. Look for the actual causes of the error in the "Error logs" of the "Collect PHP Logs" module.
×
×
  • Create New...