Jump to content
thirty bees forum

yaniv14

Members
  • Posts

    580
  • Joined

  • Last visited

  • Days Won

    24

Everything posted by yaniv14

  1. yaniv14

    DMCA

    Look at other eCommerce website and copy/paste from their TOC. And make changes where necessary. Or if you have allot of spare money you can find a local lawyer that deal with internet.
  2. Can you look for an errorlog file inside your admin folder? Did you erase classindex.php from cache?
  3. yaniv14

    reCAPTCHA

    Are your sure you are not confusing between the 2 keys? Did you set the domain name allowed for the keys?
  4. yaniv14

    Blog Doubt

    Its hard without seeing the module files and debugging the error. basically the error is because line 31 ($SimpleBlogPost = SimpleBlogPost::getByRewrite($this->simpleblogpostrewrite, $id_lang);) is trying to retrieve a post object by its rewrite (slug) and it returns none, so the following function on line 33 is not working without a post object ($SimpleBlogPost->isAccessGranted()). I am not familiar with this module so I cannot help you. But maybe you got lucky on the forum with someone who familiar with it.
  5. Why are you extending FrontController with CategoryController. Aren't you looking to override CategoryController? which in this case you need to do: class CategoryController extends CategoryControllerCore
  6. paste the content of this file override/controllers/front/CategoryController.php
  7. in your override you have: public static function cccCss() that needs to be changed to: public static function cccCss($cssfiles, $cachepath = null) p.s. every time you change something inside override folder, you need to delete class_index.php from cache
  8. Sorry, I wasn't focus. your override should be: Media::cccCss($cssFiles, $cachePath = NULL)
  9. Inside cache folder
  10. Look at your Media.php file in the override folder. The core Media:cccCss method needs to get 2 params and in your override you are not giving anything. I dont know what is inside the override cccCss(), but you can try add an empty array to it, just to see if its enough. Media::cccCss([], null). and dont forget to delete class_index.php
  11. Thanks for giving an example. Fabio have an old tutorial about how to enable combination with virtual product, check if you can use it. http://nemops.com/prestashop-virtual-products-combinations/#.WTMQxeuGOUk
  12. @roband7 Is it something we should consider adding to TB code? if so, can you do a PR?
  13. Can you give an example of virtual product with combinations?
  14. Basically the add to cart will add the default combination to card. You can setup in BO to hide the add to cart button when product has attributes, which mean that the only button will be 'view' that takes the user to the product page.
  15. https://docs.thirtybees.com/merchants-guide/native-modules/custompayments/
  16. Cash on delivery module is not part of TB modules feed. Either you install it from Prestashop or you can use the new 'Custom payment method' TB module
  17. After installing the module a new tab will be in BO for custom payments (not the module configure)
  18. @mdekker Hi, I am not really following this conversation. But I am looking at the URL @jnsgioia posted and I am wondering if this part ok? "controller=logintoken?authentication"
  19. Unless you have enough skills to modify the module to have a checkbox to determine target (blank or self) for each link.
  20. Can you post a link to your site?
  21. I am talking about the server os, not the local browsing user. 99% of website are hosted on linux webservers.
  22. Most likely is a windows issue because TB is not fully compatible with windows. Dev's have a plan on getting it fully support for windows: https://github.com/thirtybees/thirtybees/projects/3
×
×
  • Create New...