Jump to content
thirty bees forum

yaniv14

Members
  • Posts

    580
  • Joined

  • Last visited

  • Days Won

    24

Everything posted by yaniv14

  1. if you decided to commet out the part of code you mentioned above than you can put the hidden input right above it <input type="hidden" name="gift_message"> {* <p id="gift_div"> ..... </p> *} but also just hidding it with css will to do job just fine <p id="gift_div" style="display: none !important;"> ... </p>
  2. by commenting it out, you are removing the field from the form and thats why you are getting the error message from the server... because its missing 1 of its fields. you can just hide it from display to avoid this problem. like wrapping it with display: none. another option is to comment it out like you did, but add an hidden input field with the same name. like: <input type="hidden" name="gift_message">
  3. try from here https://github.com/thirtybees/blockadvertising/archive/refs/heads/master.zip
  4. regardless the validation in the module that can be fixed to support null value, i suggest you update the carrier required field of delay (i think its called transit time) make sure you have it for all languages
  5. maybe this can help you https://github.com/thirtybees/niara/blob/master/header.tpl#L89
  6. You can place your own javascript file inside your "theme_folder/js/autoload" and the file should be loaded automatically. Just override the entire function like @wakabayashi mentioned and I believe it should work, because Javascript allows overriding functions.
  7. classes/controller/FrontController.php classes/controller/FrontController.php
  8. It looks like you changed positions of cart module and top menu module.
  9. Working well on php7.4 - smarty 4.1.1
  10. try to change: $valuesQuery->select('id_feature, IFNULL(fv.custom, 0) as is_custom, COUNT(fv.id_feature_value) as count_values'); to: $valuesQuery->select('fv.id_feature, IFNULL(fv.custom, 0) as is_custom, COUNT(fv.id_feature_value) as count_values');
  11. id_product_attribute is the default attribute id of the product, if the product has any attributes/combinations. if no attributes/combinations exists for the product it will return 0. when you do conditional check 0 counts as false. to be more accurate in the case will be better to check that the integer value of the id_product_attribute is greater than 0. the reason you cannot call same "object properties/array keys" like "combinations" is because those variables are in most cases injected to the templates as smarty variables by php code in specific parts. for exmaple: in product.tpl most of the variables that available in the template comes from ProductController (FrontController)
  12. I believe you purchased a module for Prestashop 1.7 which is not compatible with ThirtyBees because ThirtyBees is based on Prestashop 1.6
  13. if you are using webp than disable it.
  14. yaniv14

    Paid Support?

    regarding image uploads you can check also php configuration "upload_max_filesize". in order for friendly urls to work you will need to have your webserver support it. in your case you are using Lightspeed so i believe it should be similar to apache and allow usage of htaccess file. but if I remember i was in discussion in a similar topic few years ago and it was not working because the shop was not on the root folder but instead was inside a folder, like in your case "/store/. regarding the core update not working, i can't help much. maybe @datakick can help... but I guess upgrading to latest stable version or even bleeding edge can help.
  15. yaniv14

    Paid Support?

    based on the error log you need to increase you php memory limit
  16. It's depend on the webserver your hosting company is using. If its apache webserver than recreating your htaccess should do the trick, because apche setting can be overrided by htaccess file. if you are using nginx webserver than htaccess wont help because nginx dont allow external overrides and all rewrites rules should be in nginx conf file.
  17. If its only category page you are looking for than you can probably do some hack in header.tpl something like. {if $page_name === "category"} <div class="col-xs-12">..... whatever you need from category.tpl file...</div> {/if}
  18. check if you have any database upgrades you need to apply. also try to do hard refresh (ctrl+f5), maybe some javascript file has been updated.
  19. maybe you need to run some database fixes/upgrades from the core updater module?
  20. can you paste the content of that file
  21. Bootstrap 4/5 use flexbox compare to Bootstrap 3. Bootstrap 5 use pure javascript instead of jquery, have RTL support by using start/end instead of right/left... and also more scss utilities. in general Bootstrap 3 is too old for today web standards.
×
×
  • Create New...