

Yabber
-
Posts
89 -
Joined
-
Last visited
-
Days Won
14
Content Type
Profiles
Forums
Gallery
Downloads
Articles
Store
Blogs
Posts posted by Yabber
-
-
@datakick I think the only reason for the incomplete update process of thirtybees is the prestashop modules using overrides. Maybe "Core Updater" should disable all overrides before starting the update process?
-
There is no need to do anything about it. If you enable “Smart cache for CSS”, these errors will disappear.
-
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 🙂 -
14 hours ago, nickz said:
There is no need for php 8.3 just because it is the newest.
You can run a site with php4 if it works well, you just need to monitor it. Which you also should do when using 8.3.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. -
-
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. -
@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))}
-
@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.
-
1
-
-
16 minutes ago, the.rampage.rado said:
It does not sort them. They are displayed in the order I have added them to the product
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.
-
1
-
-
@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. -
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?
-
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. -
And I don't see any blocking by google: https://search.google.com/test/rich-results/result?id=M20EMayXf6pc4Bni8FkF7A&hl=pl
-
10 minutes ago, pauld said:
Use module: Mail via SwiftMailer.
SwiftMailer is no longer supported and developed: https://github.com/swiftmailer/swiftmailer
-
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.
-
It's not about email marketing modules but about mail transport module. Install and configure the "Mail via PHPmailer" module.
-
-
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.
-
On 6/28/2024 at 6:31 PM, Petter said:
I'm using Nginx and Nginx do not use .htaccess file. Can't the same be done using fail2ban ?
Install Lua module to nginx, you will have nginx with htaccess support: https://github.com/e404/htaccess-for-nginx?tab=readme-ov-file
-
@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?-
2
-
1
-
-
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. -
10 hours ago, theMerchantDev said:
Can someone please paste here the Bleeding Edge link? I have heard from but I didn't know it.
Thanks.
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:-
1
-
-
@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' ];-
1
-
-
On the "Download Thirtybees" page in the "Server Requirements" section there is incorrect information misleading users who want to install Thirtybees.
-
2
-
inventory with decimal numbers
in English
Posted
By default, ThirtyBees does not have the ability to manage product quantities with decimal parts.
There are modules sold for Prestashop that supposedly add such functionality, but these modules use hundreds of core method overrides and only introduce a huge of errors into the store engine.
Therefore, a better solution is to switch to smaller units of measurement in product quantities. For example, instead of a kilogram, it is a decagram or gram, instead of a liter, it is a milliliter, etc.