Jump to content
thirty bees forum

30knees

Gold member
  • Posts

    1,435
  • Joined

  • Last visited

  • Days Won

    37

Everything posted by 30knees

  1. Thanks, @SLiCK_303! I also discovered this module: https://addons.prestashop.com/en/url-redirects/11399-301-302-303-url-redirects-and-404-seo.html But let's see whether someone here in the forum knows.
  2. Hi, We'd like to migrate from our old shop platform to tb. All the links should remain valid and receive a permanent redirect. Old shop URL template www.shop.com/productinfo.php?productsid=82 New shop URL template www.shop.com/index.php?idproduct=50&controller=product&idlang=2 (apparently, idlang is necessary, see https://forum.thirtybees.com/topic/1036/url-with-idproduct-does-not-work-needs-id_lang) I've mapped the respective product IDs and would need to generate the permanent 301 redirect now. If we take the above template examples and want to map the old URL to the new URL, would this be the correct way to do so? RewriteCond %{QUERY_STRING} products_id=82 RewriteRule ^(.*)$ http://www.shop.com/index.php?id_product=50&controller=product&id_lang=2 [L,R=301] How do I put the code in the .htaccess file with thirty bes? Under Preferences>SEO & URLs it says the .htaccess is automatically generated. I don't want the code to be overwritten by tb. Is there anything else I need to consider besides placing that code in the .htaccess file? Thanks
  3. Hi, This seems like a bug to me. Is it truly one? The URL shop.com/index.php?idproduct=50&controller=product&idlang=2 leads to the product, but the URL shop.com/index.php?id_product=50 does not, but the shop's homepage. I would have expected the URL shop.com/index.php?id_product=50 to lead to the product page in the shop's default language, but not to the shop's homepage.
  4. I was considering having a module built and then open sourced to the community, but only the functionality of editing the carrier and the payment method would have cost about four times as much as the module, which has more functionality. So I decided against it.
  5. Unfortunately, for now I decided against having a module built for this. It would have cost much more than eg this module that offers a lot more functionality (and the additional functionality is some that I'd have also needed): https://www.silbersaiten.de/prestashop/en/prestashop-modules/205-order-edit-edit-existing-order.html
  6. @vzex Yes! I think the order process is the most important element of a site. We really need to fix it.
  7. I got this reply: It only shows when debugging is enabled (which it shouldn't be when the website is fully live). It's just a bug in Prestashops HelperForm class which may or may not get fixed due to it having no negative effect other than showing a notice (notices generally pose no issue). I like the "may or may not get fixed". :)
  8. OK, thanks. So to make sure I understood: Having values under different attributes (=attribute categories) means the system wants to make these into combinations. If I do not want that, they need to be values under the same attribute. Then I will change my implementation.
  9. Sounded odd to me, too, but I don't have any arguments to give him :) It also only shows up with his module.
  10. When I visit a certain third party module's configuration page I get the following error: Notice on line 988 in file /cache/smarty/compile/e8/17/8f/e8178f4c9387e84f401348d28910fcfff4f23a17.file.form.tpl.php [8] Undefined index: name The developer said it is unrelated to their module and is caused by debugging being enabled in the "defines.php" file. I don't know whether this is a ps/tb incompatibility issue or something else, but I'm posting it here in case it's relevant for someone or something.
  11. I have two attribute categories, one "Pieces" and one "Weight". For a certain product that is available both as poweder and as capsules, I would like to have one attribute with "100 capsules" and one with "100g". This means each attribute would be from a different attribute category. The customer can select whether they'd like to buy the product as capsules or as powder. 100 capsules is the default attribute. This means it's automatically pre-selected. If a customer clicks on 100g, both 100 capsules and 100g are selected and I get the message: "This combination does not exist for this product. Please select another combination." But these two shouldn't be combination attributes, they should be individually selectable. Am I doing something wrong or is this just how tb works? If so, does that mean I would need to have the two attributes in one category and not spread across two categories?
  12. @wakabayashi OK, then I misunderstood you. I thought you meant editing by writing in a payment method. Yes, I'll look into editing that, too.
  13. @wakabayashi Couldn't one define such payment methods so they are "real" methods and then one could edit the payment method by selecting from those are are enabled?
  14. @30knees said in How to edit the carrier of an existing order?: How can I edit the carrier of an existing order? I don't see how/where I can, but I find it hard to imagine that this isn't possible. We might be able to get this into the core. What would we need to edit beyond Carrier and Carrier fee? Please keep it simple, nothing fancy as of now.
  15. Your code worked nicely, too.
  16. The rating is weird: Only 5 votes and supposedly over 90% of customers would recommend the product. No idea how to interpret that and whether the rating is reliable. But I'll take it into consideration. Thanks for pointing out!
  17. Hi, I'm looking at http://www.joethemes.com/prestashop-affiliate-program-module/ Does anyone have experience with it?
  18. @mdekker How do I execute the query you mention? I get a bunch of the following error messages when I visit its configure page: /vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatebase.php(157) : eval()'d code [8] Undefined index: id_aeuc_email I updated to 3.1.1 and it shows 3.1.1.
  19. Hi, I updated AEUC to v 3.1.0. When I click on "Configure", I get the following error: Fatal error: Class 'AdvancedEUComplianceModule\AeucCMSRoleEmailEntity' not found in /modules/advancedeucompliance/advancedeucompliance.php on line 1851 [PrestaShop] Fatal error in module file :/modules/advancedeucompliance/advancedeucompliance.php: Class 'AdvancedEUComplianceModule\AeucCMSRoleEmailEntity' not found
  20. It looks like it works now after the module update. Super job!
  21. I'm not sure if this is what you mean. I get the following: product.js:177 [Violation] Added non-passive event listener to a scroll-blocking 'touchmove' event. Consider marking event handler as 'passive' to make the page more responsive. See https://www.chromestatus.com/feature/5745543795965952 [Deprecation] Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/. jquery-1.11.0.min.js:4 [Deprecation] Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/. [Violation] Added synchronous DOM mutation listener to a 'DOMNodeInserted' event. Consider using MutationObserver to make the page more responsive.
  22. This might be the same as https://forum.thirtybees.com/topic/520/loyalty-points-available-in-one-language-but-not-the-other/
  23. @vzex Were you able to fix it for Panda, by the way? If so, how did you fix it? :)
  24. Communities and projects like this live and die because of their culture. I don't know what's been going on in the background and who started what, but @Traumflug's reply to @Occam in the thread was hostile and without any value at all. I hope these two important members of our community are able to make up and work together again to improve tb.
  25. @pedalman It's the Panda theme for me. I'll give your solution a try, thanks!
×
×
  • Create New...