Jump to content
thirty bees forum

All Activity

This stream auto-updates

  1. Yesterday
  2. @the.rampage.rado I'm now using this on my live site and all is well. Thanks again!
  3. I suddenly get the message in Client support area : IMAP configuration is not correct, any idea what this can be. I don't remembered to configure something. IMAP configuration is not correct IMAP configuration is not correctIMAP IMAP configuration is not correct IMAP configuration is not correct IMAP configuration is not correct
  4. Last week
  5. Hello Peter, Is there an official fix for P24 or recommended snippet for TB to treat that state as pending and finalize the order via webhooks (payment_intent.processing/succeeded or charge.succeeded)? Also, do you suggest restoring the cart from metadata.cart_id on validation if the session is lost? I can share logs from /log/stripe_<date>.log if helpful.
  6. retaining customers is the best way for a stable turnaround. What people don't take into consideration is that a 1st time sales discount is a slap into every returning customer's face. What does he get if the 1st time sale already had a discount.? Are the discount chasers your kind of client?
  7. I do track it, but I don't have any software to assist.
  8. Interesting point! Adjusting delivery date-time with "Delivered" status could improve accuracy in records, but whether it boosts sales depends more on customer trust and satisfaction. Retaining existing customers through reliability often has a bigger long-term impact than chasing first-time buyers with discounts.
  9. Earlier
  10. nickz

    Testing TB

    Actually I did not. Thx for the Info. Its quite positive. Unfortunately TB is hesitating in regards to promotion. A review so it seems is all TB needs.
  11. Does that enhance your sales? Don't get me wrong, of course you can do whatever you please with your time; it is a question born out of curiosity. Most shop master every effort to fetch new clients while forgetting that the same customer will never ever come back (due to the shops over eager discount options towards 1st time clients).
  12. About hacks: anything that works in backoffice > preferences > custom code ...is good About modules: The JBW module that I bought in 2020 and is mentioned above still works fine, although I don't see it actively advertised for sale any more. It used to be for sale on another site for a similar shopping cart's version 1.6 and there are probably others similar. About customizations: Core code could solve some peoples' similar problems soon but I haven't followed the "Packs with Combinations" thread -linked below - to find out if it will or not. For me the problem was a two-part product. One part was a belt buckle, and needed stock control. Another was a belt strap in multiple lengths, which would add vast imaginary stock if I used stock control while in reality I just make belt straps to size. I used "customization" as a work-around way of adding a custom belt strap length to the buckle. It looks as though the idea of a "pack" product with combinations covers the same kind of problem, I guess without using a button at the bottom of the order page that customers miss like the default customization option.
  13. wakabayashi

    Testing TB

    Thanks! Github search sucks. I search there for "view" it doesn't show the "blockviewd" repository... I looked only 5 minutes in the code, but it looks sensible. I see, that tb is reading the cookie and afterwards loading the needed products.
  14. Yabber

    Testing TB

    https://github.com/thirtybees/blockviewed It also collects product data from cookies. After all, this module has no value for customers, so why install it in the store?
  15. 3.8.0 - 09/03/2025 Added compatibility with PrestaShop 9 Correction for frontoffice apostrophe display DataTables library updated to version 2.3.3
  16. wakabayashi

    Testing TB

    The thread in prestashop forum is quite interesting. I am now with 50k of products and notice here and there some performance issues. But these are almost always issues on my own code. With 3.4 million products you will find even much more such stuff. But these issues are often not relevant, if you have only 1k products. In my expierence the perfomance issues came to 90% from modules and maybe 10% from bad hardware or missconfiguration. What is the name of the corresponding thirtybees module?
  17. You know our module is completely different from theirs, right? The version we have is long archived and not used in PS.
  18. nickz

    Testing TB

    The presta forum has an interesting post on memory usage per visitor. https://www.prestashop.com/forums/topic/1097771-very-large-catalog-34-million-products-solved/ Posted by J. Jackson and Who has done testing ? I don't use recently viewed as those a counterproductive in sales.
  19. 3.7.0 - 09/03/2025 Added compatibility with PrestaShop 9 Improved compatibility with Bootstrap 5
  20. Regarding the modules - I mean that I think there could be modules that change the shipping status via API. Regarding the statistics - I'm sure there is none. 🙂 Those KPIs are internal parameters and every large organization is tracking them. I'm working on a module that could track such data and I'm thinking if we can modify the delivery date-time when we set the Delivered status.
  21. I have never encountered a carrier module for Prestashop that would provide such detailed information about shipments via API. Not even from such giants as UPS, FedEx, or DHL.
  22. I managed to achieve a similar result with CSS and a slight modification of the theme tpl file. product.tpl ~451 {elseif ($group.group_type == 'radio')} <ul> {foreach from=$group.attributes key=id_attribute item=group_attribute} <li><label class="radio-btn"> <input type="radio" class="attribute_radio" name="{$groupName|escape:'html':'UTF-8'}" value="{$id_attribute}" {if ($group.default == $id_attribute)} checked="checked"{/if}> <span>{$group_attribute|escape:'html':'UTF-8'}</span> </label></li> {/foreach} </ul> {/if} The following label was added inside the list-item element: <label class="radio-btn"> Then the CSS to get the button display that I wanted: /* applies button style to all radio elements */ /* default as configured is a block presenting a vertical stack of options */ label.radio-btn { cursor: pointer; display: block; } label.radio-btn input { position: absolute; top: 0; left: 0; visibility: hidden; pointer-events: none; } label.radio-btn span { padding: 7px 14px; border: 2px solid rgb(var(--color-dark-gray-rgb)/var(--color-opacity-03));/*replaced #EEE;*/ display: inline-block; color:var(--color-dark-gray-rgb);/*replaced #333; */ border-radius: 0.3rem; text-transform: uppercase; width:100%; } label.radio-btn span:hover { background-color:#002b45;color:#ffffff; border-color: #3498db; } label.radio-btn input:checked + span { border-color: #009BA2; color: white; background: #3498db; background-image: -webkit-linear-gradient(top, #3498db, #2980b9); background-image: -moz-linear-gradient(top, #3498db, #2980b9); background-image: -ms-linear-gradient(top, #3498db, #2980b9); background-image: -o-linear-gradient(top, #3498db, #2980b9); background-image: linear-gradient(to bottom, #3498db, #2980b9); } /*adjust fieldset styles on the radio button attributes*/ fieldset.attribute_fieldset .attribute_list ul li { float:unset; text-align:center; margin:0.5rem; } The theme is based on the Community Theme. Hopefully those who want to take an approach not requiring additional javascript will find this information helpful.
  23. Wow! Thanks very much for the speedy work! However I am reluctant to redo my shipping once again. The setup I have now is working as expected. But I'll try this patch on my test site.
  24. We only have one carrier to send worldwide. If the order is more than $60 we will ship it for free, otherwise they are charged by weight. All orders no matter what value have the option to ship express, but this is never free. And express is charged by weight. I guess you were replying to cienislaw but I quickly found out not to set it on the preferences page.
  25. All set to zero to disable.
  26. Hi there, I'm curious if any of us is tracking those two vital KPIs for their shops? Handling time (TTS - time to ship) - the time between receiving an order and shipping it. Shipping time - the time between shipping from your warehouse and delivery to the customer. Delivery time - sum of both. So are any of us using modules or internal tools to measure those KPIs? This is useful for inner workings optimizations and, of course, for comparing carriers serving the same delivery zones. I'm curious if editing the delivery timestamp in the table during marking it as Delivered or at a later point is a viable option for making those stats more accurate. I, as a small merchant, do this in bulk when I have free time to clear the 'Shipped' orders from my list. I imagine there are shipping modules that also track delivery and will mark the orders as Delivered or Returned, etc, but I've never worked with similar.
  27. @beetea2, thank you for reporting this bug. You can test the fix from here: https://github.com/thirtybees/thirtybees/pull/2068 But keep in mind that it might be changed during merging so if it's critical and you don't update to edge regularly keep an eye on github so if there are changes in the final fix you can apply them manually. Cheers!
  1. Load more activity
×
×
  • Create New...