Jump to content
thirty bees forum

wakabayashi

Silver member
  • Posts

    2,029
  • Joined

  • Last visited

  • Days Won

    176

Everything posted by wakabayashi

  1. Which type are you chosing? I just tested it on my site and it worked :S Are you talking about points or coins?
  2. @rubben1985 nobody doubt's that a lot of things could be improved. But this is really a question of money and manpower. There is very little support for @lesley, @mdekker and @Traumflug . Right now only @yaniv14, @gonssal and @datakick come to my mind, who regularly submit some code stuff. There is also non-code stuff. But I may ask: - How many translations have been done by community? - How many blog posts have been written by community? - How many people like the tb facebook posts? I believe, I don't have to go on... If we (including me) are all so clever, what has to be done, we surely are very successful with our own online stores. Then it shouldn't be hard, to find shops, which donate 100$ a month to develop this system seriously. I am not joking. I am ready to donate 100-200$ a month, if 20 others are too. Then we could really make progress with this system.
  3. Great :) Now it worked. I always tried to add html :D
  4. I think I did :smiling_face: Edit: Hm I am too dumb to do it :S
  5. wakabayashi

    Help needed

    @the-rampage-rado what does not work? Maybe you need to change a line in init function of single.php. I use there this: $simpleblog_post_rewrite = Tools::getValue('sb_rewrite', 0); Also you need then to change ph_simpleblog.php 'module-ph_simpleblog-single' => array( 'controller' => 'single', 'rule' => $blog_slug.'/{sb_category}/{rewrite}', 'keywords' => array( 'sb_category' => array('regexp' => '[_a-zA-Z0-9-\pL]*', 'param' => 'sb_category'), 'rewrite' => array('regexp' => '[_a-zA-Z0-9-\pL]*', 'param' => 'sb_rewrite'), // change 'rewrite' to 'sb_rewrite' ), 'params' => array( 'fc' => 'module', 'module' => 'ph_simpleblog', ), ),
  6. @datakick thx for the useful tipps. Didn't know that. @dynambee and dosbiner great!
  7. Who is using elasticsearch here on a live shop?
  8. @rand0m said in Buchhaltung: Guten Morgen allerseits, wir sind momentan auf der Suche nach Möglichkeiten unsere Buchhaltung in Zukunft zu automatisieren. Leider hab ich da nicht so wahnsinnig viel gefunden bezüglich Anbindung Buchhaltungssystem Prestashop/Thirtybees. Momentan scheint für mich die beste Lösung, ein eigenes Modul für Debitoor zu entwickeln, da die wenigstens über eine saubere offene API verfügen. Bevor ich mir allerdings die Arbeit mache, wollte ich einfach mal fragen, wie ihr das mit der Buchhaltung macht und was ihr so empfehlen würdet. Schonmal vielen Dank und beste Grüße Ich habe keine Ahnung davon. Wäre aber auch an so etwas interessiert. Leider ist in TB sehr wenig automatisiert :(
  9. No. These products doesn't appear there.
  10. No this things are in my tb backoffice logs.
  11. I think, to create a new module is the best way. You can of course copy the things from BestSellers and then adjust the product query somehow.
  12. @ariom I believe my report should be enough. It's clear now, that multiple merchants have the same issue and it's not related to multistore.
  13. I can confirm this issue! It's probably the same as in homeslider module... I have just added an issue on github with the homeslider module: https://github.com/thirtybees/homeslider/issues/3 @ariom are you using the multistore feature?
  14. I just installed it. Seems to work perfectly fine! Thanks a lot!
  15. Problem is, that PS doesn't support namespaces. TB does...
  16. Well this module was developed for tb.
  17. Hello @stephane Nice to have you here!
  18. @ajensen27 as far as I know, nobody is working on that right now.
  19. If you want, to send a copy of all emails to yourself, you can use this override. Just change the email address and save the file as Mail.php in override/classes folder. After uploading the file, you should delete the file cache/class_index.php on your server. ``` <?php if (!defined('PSVERSION_')) exit; class Mail extends MailCore { // BCC Function public static function Send( $idLang, $template, $subject, $templateVars, $to, $toName = null, $from = null, $fromName = null, $fileAttachment = null, $modeSmtp = null, $templatePath = _PS_MAIL_DIR_, $die = false, $idShop = null, $bcc = null, $replyTo = null) { // Make always an array if ($bcc && !is_array($bcc)) { $bcc = array($bcc); } // Add BCC email $bcc[] = '[email protected]'; return parent::Send($idLang, $template, $subject, $templateVars, $to, $toName, $from, $fromName, $fileAttachment, $modeSmtp, $templatePath, $die, $idShop, $bcc, $replyTo); } } ```
  20. @DaoKakao I don't think, that would help him in the long run. The problem is, that he will lose the "all shops" functionality again.
  21. I don't think there is a simple solution to that. I believe, something like a shortcode system is needed to solve this.
  22. @traumflug said in Prestashop von 1.6 to TB - Sinvoll und Rechtssicher?: Will man einen schon laufenden Shop migrieren, ist es eine gute Idee, erst mal eine Kopie zu migrieren um zu sehen, wie gut das funktioniert. Oh ja, das sollte man immer tun. Vor genau einem Jahr habe ich dazu ein Video gedreht: https://www.youtube.com/watch?v=LN7KD9W_MY4
  23. Ja technisch mag das vielleicht alles lösbar sein. Aber was sollen jetzt Leute wie @colorful-ant machen? Ihr Shop wird morgen die DSVGO nicht korrekt umsetzen können. Für mich schiesst die ganze Sache über das Ziel hinaus. Es gibt einige wenige globale Firmen die hässlich Daten sammeln, auswerten und verkaufen. Wer von uns kleinen Händler tut das? Welcher Kunde liest sich auf jeder Webseite die nun seitenlangen Datenschutzerklärungen durch?
×
×
  • Create New...