Jump to content
thirty bees forum

yaniv14

Trusted Members
  • Posts

    632
  • Joined

  • Last visited

  • Days Won

    28

Posts posted by yaniv14

  1. Just google shopping sites in US/Europe. You will probably find a billion. I dont recommend looking at the big ones, like: macys, oldnavy, etc.... I know that eCommerce also indicates about returns, transactions and stuff. and thats why I recommend eCommerce instead of Dropbox

  2. 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.

  3. 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.

  4. 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

  5. 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

  6. 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

  7. 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.

×
×
  • Create New...