Jump to content
thirty bees forum

wakabayashi

Silver member
  • Posts

    2,027
  • Joined

  • Last visited

  • Days Won

    175

Everything posted by wakabayashi

  1. Isn't that the normal behaviour? I am the owner of chesspoint.ch. I changed some things with attributes, since I don't want to have any "default" attribute. But I can't remember, that I removed the id in the url 😮
  2. If it refers to the blog. First important information is: which blog module do you use? It would also be helpful to have a link to the blog post or blog category where the error occurs.
  3. @Traumflug Well it makes sense, if you want that. But as he is aksing for csv files this can lead to new entries in the db, which arent wanted. Of course depending on how the csv looks like.
  4. You to to inspect the code in your browser. It's very easy: just right click and then something like "inspect". then a tab will open where you need to search for something like "console".
  5. Well save() will add new product as well. update() will only update exisiting products. I highly doubt save() makes any sense in this case... To me this sounds all a bit complex and as I said you need to be careful. I don't understand why you have id_product at all in your csv? Where comes the csv from?
  6. By the way, I hope your are testing this stuff on a testserver first. As such things could mess up your DB a lot... Also check if you need save() or if update() is enough.
  7. Ok I believe I understand now what you want. I don't have experience with csv files but I guess something like that should work: $file = fopen('file.csv', 'r'); $id_product_column = x; // Define which column is id_product (first, second, or whatever) while (($line = fgetcsv($file)) !== FALSE) { $id_product = $line[($id_product_column-1)]; if ($id_product > 0) { $product = new Product($id_product) $product->save(); } } fclose($file);
  8. I don't understand what you want achieve. And what means "save" save by click on a button or $object->save()?
  9. wakabayashi

    SEO Module

    You cant use mysql_error() with php 7. https://www.php.net/manual/en/function.mysql-error.php
  10. wakabayashi

    SEO Module

    You should turn debug mode on and post the real error here...
  11. Please try this: {category:/}{reference}/{rewrite} I am not sure, but maybe this is the correct synthax. I guess the system has problem if you use "-" before {rewrite}
  12. Can you try mine from above and see if it works?
  13. What is your url structure? Mine is: {categories:/}{rewrite} This works fine for me.
  14. Which urls don't work? The new or the old ones? Or both?
  15. If you need some stuff for you dogs 😉
  16. Well it's hard to say. The code looks well formatted. But it's your site. You are the one, who can check if everything works as it should!?
  17. @Traumflug I am not sure, if I understand you right. But this issue is well known: https://github.com/thirtybees/thirtybees/issues/749
  18. I will create a banner for her. So this "problem" should be "fixed". 🙂
  19. Well I don't know this module, since it's from a theme. Have you tried to make a second link group? Same settings but, sub-links alignment to center? Maybe you can use on display on (align center). thats probably even better. If this is not working you have to edit tpl files. For the image you need a image editor. I am no more too much into this, but some years ago GIMP was the best free tool. Maybe now days something like https://pixlr.com does the trick too.
  20. @alwayspaws this is maybe not so easily achievable. Which module is adding the "Contact" menu point?
  21. @Factor I have merged it!
  22. I guess she means like this: if somebody buys 3 products, the cheapest will be for free. I don't know any easy solution for this. Probably there are modules, that offer such a functionality. @alwayspaws nice you are back here 😉
  23. Well this never happen to us. But I also cant remember any such fix. I would be glad, if we could improve ASM more, as its a really important feature for us.
  24. @Signut did not yet vote 😉
×
×
  • Create New...