Jump to content
thirty bees forum

wakabayashi

Silver member
  • Posts

    2,027
  • Joined

  • Last visited

  • Days Won

    175

Everything posted by wakabayashi

  1. Great :) Now it worked. I always tried to add html :D
  2. I think I did :smiling_face: Edit: Hm I am too dumb to do it :S
  3. 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', ), ),
  4. @datakick thx for the useful tipps. Didn't know that. @dynambee and dosbiner great!
  5. Who is using elasticsearch here on a live shop?
  6. @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 :(
  7. No. These products doesn't appear there.
  8. No this things are in my tb backoffice logs.
  9. 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.
  10. @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.
  11. 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?
  12. I just installed it. Seems to work perfectly fine! Thanks a lot!
  13. Problem is, that PS doesn't support namespaces. TB does...
  14. Well this module was developed for tb.
  15. Hello @stephane Nice to have you here!
  16. @ajensen27 as far as I know, nobody is working on that right now.
  17. 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); } } ```
  18. @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.
  19. I don't think there is a simple solution to that. I believe, something like a shortcode system is needed to solve this.
  20. @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
  21. 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?
  22. @lausli said in Prestashop von 1.6 to TB - Sinvoll und Rechtssicher?: Am Ende wünsche ich mir nur ein Stabiles und Rechtssycheres System um mich auf meine eigentliche Arbeit zu konzentrieren. Das habe ich das Gefühl klappt aber weder dort noch hier. Ich kann deine Gedanken gut verstehen @Lausli. Thirty bees hat bisher gewiss nicht alle Ziele erreicht. Dennoch darf man nicht vergessen, dass vieles besser läuft als bei PS 1.6. Wir waren einer der ersten Shops, welche umgestellt haben. Kürzlich habe ich unseren PS 1.6.0.14 Backup Shop besucht. Es war fürchterlich an das langsame BackOffice erinnert zu werden. Ist TB stabil? Ja, läuft ziemlich gut hier. Ist TB rechtssicher? Nein denke ich nicht. Bei uns lief die Migration reibungsfrei. Bei anderen treten aber immer wieder mal Probleme auf. Warum das so ist, weiss ich nicht. Es gibt auch einen kostenpflichtigen Migrationsservice. Dann kümmern sich die Profis um das. Die Frage welche Alternativen gibt es? Ich glaube kein Shopsystem läuft einwandfrei und ist dazu noch rechtssicher.
  23. @vincentdenkspel you seem to be a good motivator :)
×
×
  • Create New...