Jump to content
thirty bees forum

zen

Members
  • Posts

    421
  • Joined

  • Last visited

  • Days Won

    60

Everything posted by zen

  1. zen

    Goodbye

    to Sell it ? ok.. now I also join @toplakd on the soap opera thing ! it's mind bogus^^
  2. zen

    Goodbye

    I think you are exagerating, Presta had and still have a lot of negativity on the forum but they also have a Community manager and moderators that delete a lot of unwanted messages, that sucks !
  3. zen

    Goodbye

    I don't fear negativity, and together we are stronger .. alone is always weaker.
  4. zen

    Goodbye

    Good to know that you start getting better 🙂
  5. zen

    Goodbye

    OK, but this is not new... Datakick is leaving because of this unclear situation, why not take the opportunity to move forward instead of let it become rotten.
  6. What you can do is to test before and you won't get the error, like this on line 1480 : 1476: if ($sandbox) { 1477: // Load configuration of the theme package. 1478: $sandboxDir = $sandbox.'/'.$themeDir; 1479: $xml = Theme::loadDefaultConfig($sandboxDir); 1480: if (isset($xml->attributes())) $xmlAttributes = $xml->attributes(); 1481: $targetDir = _PS_ALL_THEMES_DIR_.$xmlAttributes['directory'];
  7. zen

    Goodbye

    what happen @Traumflug so that you do not participate anymore.. you used to work for TB, not anymore ?
  8. zen

    Goodbye

    I Guess nowhere ... Sad but good Time for reacting and doing something even better on our own !
  9. zen

    Any news on Lesley?

    So... what are the news ?
  10. zen

    Goodbye

    OK.. so since january 2nd we have NO news from Him.. what to do ? Where are you going Datakick.. may I follow you ? LOL more seriously.. let's start or continue with a fork of TB with people really motivated, why not ?
  11. zen

    Goodbye

    I would like to take the opportuniy to ask some basics questions before you leave, if you have the answers of course: How TB works legaly, is there some accounts filled with income from partners, where is it going, is it + or - right now ? Who is the TB team now... what job for each one..? And how is Lesley doing after being in hospital.. I hope much better ! Is there anybody that also has the same keys in hand for the future of TB or everyhting is under the control of one person only ? => I hope to have some answers before I'll consider to make a u-turn myself too.
  12. zen

    Goodbye

    That's life.. Changing is always a wise choice 🙂 Thank you for all your devotion into this project.. I am starting to really worry now about TB.. Who is still able to give time for this project ? Are we gonna make a fork of that fork ? many questions still remains. You should be payed for this job Datakick that's for sure ! I feel like this since 2 years already, but not really alone just with only 3 or 4 people really doing things and not on the same time.. so it's not trustfull. Anyway, if you start gardening or giving tantric courses, you'll miss TB time for sure.. OR NOT 🙂 😛
  13. That could be nice, but I started this module for niara theme specially, it needs to be done differently if it's for the community theme manager. I'd love to have more people on the module thread for sure so we can "all together" but from far away.. do something usefull for both theme maybe. last answer on the theme module was in : November 7, 2019
  14. cool, always better when it's fixed by itself 🙂
  15. I am for that direction too... no need for almost all users of TB.. so it's more a source of problems than anything else, someone who wants to use it should understand really what is going on and how to configure it properly and find it under module section is preferable.
  16. I don't understand why your module will stop working on the PS update, and "theirs too". What or who is their this Time , sorry but it's a bit confusing.
  17. Yes..you just add the New shipping options to theses products but they should also be available to the GLS at 15 for EU. then customers can choisie GLS or cheaper for clothes and if you add another item then only GLS will be possible to use as shipping service. That's all
  18. I just discovered a new bug on our TB platform, I think it is there since looooong time, let me explain it : - Need to setup 2 vouchers, on my test they donot have any code so it is added automatically to the cart when conditons are there, my vouchers give one free Product when 5 bought, the second give one more when 10 boughts in total. - create an order on front office with these 2 vouchers, so add 10 products of the selected categorie, the cart is good and you can pay the correct amount. - go to back office Orders tab and look into the order, there are the 2 coupons in cart Rule details but the payment say that customer didn't payed enough, and the Order detail just show one of the 2 coupons in the reduction line, so only one is taken into account for Total amount of the order.. that's where the bug is. Please confirm or not that this bug is real and if you have any idea on how to fix it, I'll dig it when I'll got time enough for that.
  19. The problem seems to be not in the cross-selling module that works fine.. but from your module called : securitybooster this one, in order to work properly should not be cached, just try to not use the page cache at all.. I don't think you'll find it less fast than before, and don't be confused I am not talking about smarty cache, this one should still be engaged.
  20. the link to phpmyadmin was by mistake.. it's deleted, thank you for reporting it. But yes If you want to add this to your shop, for now it's better to use phpmyadmin to add that new column, It might get integrated on the next release and then no need for modifications with phpmyadmin of DB, simple upgrade will do.
  21. For that you can do an override in your shop, create a new file named : /override/classes/controller/FrontController.php and put that code inside : <?php /** * Class FrontControllerCore. * * adding a fix high number for manufacturer pagination so all brands are shown in one page only */ class FrontController extends FrontControllerCore { public function pagination($totalProducts = null) { if (!static::$initialized) { $this->init(); } // Retrieve the default number of products per page and the other available selections $defaultProductsPerPage = max(1, (int) Configuration::get('PS_PRODUCTS_PER_PAGE')); switch ($this->php_self) { case 'manufacturer': $defaultProductsPerPage=999; // this is the fixed high number for manufacturers per page. break; } $nArray = [$defaultProductsPerPage, $defaultProductsPerPage * 2, $defaultProductsPerPage * 5]; if ((int) Tools::getValue('n') && (int) $totalProducts > 0) { $nArray[] = $totalProducts; } // Retrieve the current number of products per page (either the default, the GET parameter or the one in the cookie) $this->n = $defaultProductsPerPage; if (isset($this->context->cookie->nb_item_per_page) && in_array($this->context->cookie->nb_item_per_page, $nArray)) { $this->n = (int) $this->context->cookie->nb_item_per_page; } if ((int) Tools::getValue('n') && in_array((int) Tools::getValue('n'), $nArray)) { $this->n = (int) Tools::getValue('n'); } // Retrieve the page number (either the GET parameter or the first page) $this->p = (int) Tools::getValue('p', 1); // If the parameter is not correct then redirect (do not merge with the previous line, the redirect is required in order to avoid duplicate content) if (!is_numeric($this->p) || $this->p < 1) { Tools::redirect($this->context->link->getPaginationLink(false, false, $this->n, false, 1, false)); } // Remove the page parameter in order to get a clean URL for the pagination template $currentUrl = preg_replace('/(?:(\?)|&)p=\d+/', '$1', Tools::htmlentitiesUTF8($_SERVER['REQUEST_URI'])); if ($this->n != $defaultProductsPerPage || isset($this->context->cookie->nb_item_per_page)) { $this->context->cookie->nb_item_per_page = $this->n; } $pagesNb = ceil($totalProducts / (int) $this->n); if ($this->p > $pagesNb && $totalProducts != 0) { Tools::redirect($this->context->link->getPaginationLink(false, false, $this->n, false, $pagesNb, false)); } $range = 2; /* how many pages around page selected */ $start = (int) ($this->p - $range); if ($start < 1) { $start = 1; } $stop = (int) ($this->p + $range); if ($stop > $pagesNb) { $stop = (int) $pagesNb; } $this->context->smarty->assign( [ 'nb_products' => $totalProducts, 'products_per_page' => $this->n, 'pages_nb' => $pagesNb, 'p' => $this->p, 'n' => $this->n, 'nArray' => $nArray, 'range' => $range, 'start' => $start, 'stop' => $stop, 'current_url' => $currentUrl, ] ); } } don't forget to delete this file after : cache/class_index.php and please verify that in your BO the overrides are not desactived. Enjoy 🙂
  22. Hello, I just finished a modification on the CartRules class and admin theme + one more column in mysql table tb_cart_rule This function was missing for some TB users >> Before : Minimum amount to reach is based on total amount of the order => good for most situations. Now : If you activate selected products the minimum amount to reach in your order will be calculated from your products in your cart that match the selected products of the voucher only if selected. 😛 posted on github here : https://github.com/thirtybees/thirtybees/pull/1147 as TB now use use ObjectModelSchemaBuilder to create database schema, there's no need to update anything in install directory, right ?
  23. Yes, this is my skype ID : Zengraph we might talk soon then 🙂
  24. The shop is working. apparently good now and updated on the 1.1.0 version with success 🙂 thanks to this thread : but maybe more problems to come ... hosting is an important factor for the success of your eshop !
  25. Of course !! The hosting could be and seems to be the root problem here.
×
×
  • Create New...