Jump to content
thirty bees forum

movieseals

Gold member
  • Posts

    451
  • Joined

  • Last visited

  • Days Won

    7

Everything posted by movieseals

  1. I am looking for the same thing. There was a prestashop module that did just that but it is buggy as hell under thirty bees and it conflicts with several things because it uses lots of overrides. So if a module ever gets made, consider it sold to me at the very least.
  2. TM MEGA menu from template monster also works without issues for me.
  3. Problem is back with a vengeance. Unable to update orders or generate invoices. Uninstall modules I thought was causing the cache issue but to no avail. For the time being, I will have to revert back to 1.0.3. We had an order today and we spent hours just trying to process the payment and I am still unable to generate an invoice for it. A little too stressful for my taste.
  4. I did do that. It is 1.0.4.
  5. I did. I just rechecked and for good mesures reuploaded classes and Controllers files to my FTP to be 100% sure.
  6. After upgrading to 1.0.4, in the backend, if I click on a customer to get to their details, I get a weird page where all the information about the customer is just text., as if no CSS is loading. Refreshing browswer, flushing and/or disabling caches, nothing works. Same problem happens when trying to view orders. In Debug mode, it seems to be because of a conflict with Dispatcher.php: Warning on line 2192 in file /home/librairiezbook/publichtml/classes/controller/AdminController.php [2] Cannot modify header information - headers already sent by (output started at /home/librairiezbook/publichtml/classes/Dispatcher.php:519) Any ideas?
  7. Well, there are some issues still: If I click on a customer, I get a weird page where all the information about the customer is just text. Refreshing, flushing caches, nothing works. Same problem happens when trying to view orders. In Debug mode, it seems to be because of a conflict with Dispatcher.php: Warning on line 2192 in file /home/librairiezbook/publichtml/classes/controller/AdminController.php [2] Cannot modify header information - headers already sent by (output started at /home/librairiezbook/publichtml/classes/Dispatcher.php:519)
  8. OK. For some reason, I had to overwrite the stats module a second time in my modules folder on the FTP for things to install properly.
  9. I have attempted an upgrade to 1.0.4 following the instructions in the blog post. When I log back in my back office to try and install the new stats module, I get this error message: The following module(s) could not be installed properly: statsmodule : The version of your module is not compliant with your thirty bees version. A visit to the Stats tab confirms that no modules has been installed. Additionally, trying to access some sections of the backend gives me a page of smarty code instead of what I should be expecting. Any ideas why?
  10. Never mind. Figured something out eventually.
  11. Hi everyone, I want to have a single, static image above the module theme configurator, which allows 3 pictures. Currently, I can achieve it by using the homeslider module, putting one picture in it and setting everything to zero. But the picture loads weirdly and I cannot remove the dot for the paging. I tried to hardcode the image in the index.tpl of my theme, before the displayHome hook, but what I get is my image appears BELOW the Theme configurator, which is currenly into the same hook but appears to somewhat have priority over my image. I also tried to put the image inside the Home section of the Theme Configurator and I get the same result. So any suggestions? What am I doing wrong? Thanks!
  12. @datakick said in Spam shopping carts: Disallow: /blackhole/ Thank you for the clarification. Makes sense!
  13. @datakick Very nice implementation! Great addition to the TB arsenal!
  14. @slick_303 On my version, I did this: Disallow: */blackhole/ Seems to work.
  15. @drmasterchief See my answer above. It has to be on all files. If you have an HTML module, you can tell it to put the code on the header of every page and the same for the footer. It is not hard or difficult. I wanted to add pictures but the system will not let me.
  16. @mockob Most of the points you raise are addressed in this thread by the people concerned: https://forum.thirtybees.com/topic/1571/progress-sharing There will be an update in April. I want to say that I got more help on this forum in a couple of months that I ever got in two years on the Prestashop forums... I think what TB needs is promotion and good word of mouth more than anything else and some sort of marketplace to generate income for those working hard behind the scene. No projects can ever be perfect but I believe in this one because I have already seen night and day results on many fronts since I migrated. It also takes time to get things right. Everybody has different needs and concerns. Nobody will get everything addressed within the time frame they want. But I don't think there is cause for panic or worry just yet. My two cents, for what it is worth.
  17. I tried to upload screen grabs to show you where to put it in the HTML block module, but I apparently do not have the permission to do that. The module is configured to allow you to put any HTML or PHP wherever on the page. So one line goes to all headers, and the other goes to all footers and you are good to go. It is really not hard and I have very little know how or technical skills in that regard. However, if datakick turns it into a module, it will rock!, of that I am sure. However, to be clear, it does not stop everything all the time. It curbs the robots attacks over time. It can take a few days to see the results. You will get a lot of bots at first, then it slows down. We used to have hundreds of fake carts a day, now we have a couple once every few weeks. Eventually, you catch them all and things get slowly back to normal. Don't expect a miracle on first install. It has to do its job.
  18. I added the lines using nemo's HTML block module. But I believe there are a few free modules floating around that allow us adding lines to the header and/or the footer.
  19. I put the wrong link: this is the correct one for the PHP script: https://perishablepress.com/blackhole-bad-bots-php-version/ My apologies.
  20. I have installed this. It does not stop them all right away but it seriously curbed the problem in our shop over time. https://perishablepress.com/blackhole-bad-bots/ You need to download and install the script version, not the plugin (which is for wordpress). The script version works with any server and configuration.
  21. Thank you very much for all your help!
  22. Not inside the module, inside the CMS tpl file, there are two hooks created, one CMSBEFORE and one CMSAFTER. Inside the module, I only want to use CMS_AFTER as I want the module to appear after any CMS content.
  23. I did a customCMSBEFORE and a customCMSAFTER, inside the CMS page, as described in the tutorial, so that I could put stuff before or after the CMS code itself. Hence the labeling. But I do know that they need to match everywhere (and currently they do).
  24. /** Function Install Module **/ public function install() { if (parent::install() && $this->registerHook('actionShopDataDuplication') && $this->registerHook('home') && $this->registerHook('displayHeader') && $this->registerHook('customCMS_AFTER')) { $this->setDataBase('add'); $this->installDemo(); return true; } return false; }
  25. Hi! Sorry for the delay! Busy week. No, the hooks do not appear.
×
×
  • Create New...