Leaderboard
Popular Content
Showing content with the highest reputation since 01/23/2025 in all areas
-
4 points
-
This module allows you to have lists of something -- usually it's list of products, customers, or orders. These lists are meant for employees only, and are usually used as some kind of todo list or trello board. There are few different ways how items can be added to the list (my examples use list of products, but similarly you could work with other entity types) 1) manually -- employee can assign products with lists in back office product page: 2) mass addition -- all products, or all products that matches some criteria can be added in bulk 3) Entry conditions You can set up list entry conditions -- when product is created, or updated, and conditions are satisfied, the product will be added to list. Example use case: Let's say I'm adding new language FR to my store, and I want to have list of all products that needs translation. I create new list named FR translation completed I perform initial load of products -- assign products by condition (english name exists, FR name does not exists) Next, I will create exit conditions (in Set rules > Exist conditionS) -- remove product from this list when product is updated, and FR translation for Name field has changed and is not empty: Now every time I edit the product that is on this list and change Name fields in FR, the product will be removed from the list. I now have a TODO list of products that needs attention of my translator: There are many other use cases. For example, when product price changes, product can be added to 'Review price' list automatically. You can have a list of orders waiting for products on backorder, or whatever. You can also create list without any entry or exit conditions, and use it for intracompany communication. For example, your employees can use lists to flag some orders for managers attention, or manually mark products that are low on stock,...4 points
-
Left a review—really great project. Since version 1.1, I’ve been trying to convince clients to switch to Thirty Bees. Those who did are really happy with it. Just last month, a client called me and said that a year earlier, I had recommended Thirty Bees to them. They gave it a try and now say they’re never going back to PrestaShop. The main reason? It just works. PrestaShop requires constant maintenance—someone always has to keep an eye on it. While it may have a few more features, Thirty Bees is simply more efficient. It supports newer technologies (like PHP, often a year ahead of PrestaShop) and isn’t packed with unnecessary bloat. If someone just wants to focus on selling and running a business without headaches, Thirty Bees is the way to go.3 points
-
1.6 is the latest official version which offers the latest bugfixes, security fixes and new features. Running versions prior to the latest on ecommerce sites is like running windows 7 or XP in 2025 - 'it's working' but leaves a bad taste in your mouth. If 1.6 is not 'stable' for somebody they should consider hunting bugs in their theme and 3rd party modules as the system has never been more stable.2 points
-
A stable system that is being maintained. Lots of features. Easy to update. Excellent support. Thank you!2 points
-
I realize this is an old thread, but it was relevant to me to remove invoice attachment in all scenarios, but still generate the document for customer access on the web, to ensure optimum email delivery with our domain (Since huge amounts of emails with attachments are a big spam flag). I resolved with this override based on a post I found on the web. (Don't judge my code please 😉) It takes an override of the PaymentModule.php file in classes/module/. Lines 695-698 below are modified. PaymentModule.php2 points
-
2 points
-
As of today it seems: Still thirty bees https://www.kabuk.co.il https://www.rigtigkaffe.dk https://www.ting-shop.dk https://snoir.dk https://sokkeposten.dk https://www.berez.co.il https://ecykelhjelm.dk https://www.quebec-amerique.com https://www.add-one.fr https://www.safetyrestore.com https://store.mindnutrition.com https://www.chesspoint.ch https://www.lens.co.il https://www.x-pens.com https://americanqualityhealthproducts.com https://www.babycompany.be https://www.bountyhuntertoys.com/store https://www.prospeed.dk https://www.led24.ee https://optlasers.com https://twighockeycompany.com https://nani.com.pl https://www.spielezar.ch https://veganline.com https://southerncottagegifts.com Returned to Prestashop https://milmanltd.co.il https://ecowarehouse.nz https://www.minikneet.com Not tb anymore https://www.susenso.nl https://www.123crea.eu https://www.belfas.com https://www.onlinetoys.com.au https://mettepshop.dk https://shop.hhof.com https://rvpartshop.com https://paradisearcadeshop.com https://4kidspoint.pl https://www.levysjewelry.co.il2 points
-
Sharing this since I finally had time to look into the problem and figure out the issue of not all Stripe payment methods appearing on their hosted checkout page. If you're using the TB Stripe module, you likely noticed that with update to version 1.8 a while back, that you were no longer seeing all the payment methods you selected on your Stripe dashboard available in the hosted checkout page. This was a problem as we couldn't get Afterpay or Cash App to show up for customers to select. They are enabled on the Stripe dashboard, but not in the hosted checkout. Anyway, here is a band-aid fix until our TB dev's have time to properly adjust the module. You just need comment out a couple lines in the file StripeApi.php public function createCheckoutSession( Cart $cart, string $methodId, array $methods = [], array $paymentMethodOptions = [] ) { $context = Context::getContext(); $total = Utils::getCartTotal($cart); $validationLink = Utils::getValidationUrl($methodId); /* if (! $methods) { $methods = [ \Stripe\PaymentMethod::TYPE_CARD, ]; }*/1 point
-
I'm on Warehouse on PHP 8.2 after some manual work to update. Not sure you'll be able to get it anymore though. I believe Panda is likely the most flexible theme available that is mostly configuration and not coding if that's what you're looking for https://www.sunnytoo.com/product/panda-creative-responsive-prestashop-theme . I'm not sure on their PHP compatibility but I remember them being quick to respond when asked. I believe I last tested it on 8.1 and it worked.1 point
-
In all themes for Prestashop (both free and paid) there are hundreds of inconsistencies with the requirements of WCAG 2.2 AA https://www.w3.org/TR/WCAG22/. Also on Prestashop there is not a single store that meets the requirements of the 2019/882 directive, i.e. the European Accessibility Act. Both themes included in thirtybees also do not meet the requirements of WCAG 2.2 AA. With this validator https://wave.webaim.org/ you can check your store pages.1 point
-
Ok so after a bit of research by comparing a clean 1.5.1 install with the Paypal module installed and my upgraded version I could see i was missing some fields in the Paypal_order table in the database id_payer id_payment So i added these fields manually and did a test order and it seems to have gone through successfully without any error being thrown up after being returned back to my website, and checking the database shows that there is now data being recorded for id_payer and id_payment in those fields for my test order. So hopefully that has resolve the issue. But if someone with more knowledge on this has any further things I should be checking please let me know.1 point
-
Hello, I upgraded TB from 1.08 to 1.6. After this upgrade the pdf invoice just renders with a blank page. However the delivery slip works. I couln't not get / fetch any error message. I turned debug mode to ON and I also set show errors in php.ini but I never could get an error message. Anyone could help to sort this out? best regards, Scully1 point
-
1 point
-
hi. if it can be useful i am using this module and it has always worked, from the first to the current thirty release. i hope it is useful. https://psitsolution.com/tools/en/thirty-bees/modules/marketing-and-promition/abandoned-carts-reminder-module1 point
-
No, I'm not. 🙃 Thx. It was a stupid mistake in the path. Solved.1 point
-
Thanks everyone - some good looking sites on this list - glad to see TB still has some gems and that they're doing well!💎 If you guys don't mind to post something here as well please (yes, we need your help). Thank you in advance! 👍1 point
-
For the login issue try this: And after you regenerate your pass delete this file as anybody would be able to enter your admin when it's present on the server.1 point
-
Hi, I had my domain suspended for malware, this is the report: FILES INFECTED IN YOUR HOSTING ACCOUNT: ~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ /home/cantina/public_html/themes/niara/header.tpl SMW-INJ-27348-js.spam.polyfill-3 Infected /home/cantina/public_html/themes/community-theme-default/header.tpl SMW-INJ-CLOUDAV-js.spam-27295-5 Infected /home/pcb/public_html/themes/berto/header.tpl SMW-INJ-27348-js.spam.polyfill-3 Infected /home/pcb/public_html/themes/niara/header.tpl SMW-INJ-27348-js.spam.polyfill-3 Infected /home/pcb/public_html/themes/community-theme-default/header.tpl SMW-INJ-CLOUDAV-js.spam-27295-5 Infected ~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ I replaced the reported file, taken from the backup and updated the theme from the core updater. Do you have any advice on how to search for malware and prevent it or useful information Thanks1 point
-
I am using the default Niara theme and have the problem that Google only takes the images from Niara_cart, therefore all images are 80x80 in size which leads to all my products being rejected in the Merchant Center. Even in search results the pictures are very tiny. I would want the pictures to be Niara_large (458x458) I have attached an example image of my problem. Anything I can do to fix this?1 point
-
I'm sure there are many. My datakick module can be used to generate xml feed for GMC. You can use channable module to export your content to channable, and from there you can push it to any number of third party services, including GMC. there is google shopping flux free module (https://github.com/d1m007/gshoppingflux) - there is some compatbility issue with thirty bees, see this PR: https://github.com/d1m007/gshoppingflux/pull/105/files and I'm sure there are many more1 point
-
Thanks for your work, guys! Still very happy to use thirty bees. Obviously I support the project with the monthly subscription and with paid support hours. 😉 I hope, I can find some time for some useful PR on github ⏲️ But I am very busy with my own work, so atm the financial support is easier 🤑1 point
-
To those that have started leaving reviews and taking the effort to help support ThirtyBees, from all of us here at ThirtyBees, a sincere and BIG thank you! You guys rock! 🥳1 point
-
It would makes sense to update mine from chesspoint.ch to https://www.spielezar.ch 😏1 point