Jump to content
thirty bees forum

yaniv14

Trusted Members
  • Posts

    620
  • Joined

  • Last visited

  • Days Won

    27

Everything posted by yaniv14

  1. Yes, you are right. I don't see the remove button in the cart popup. I can't tell if its meant to be like that in this theme or just forgotten. Maybe @lesley can answer.
  2. What about full page cache? server side cache?
  3. What you describe looks like a caching problem. Try to disable all cache and check if it helps
  4. To see the console log in Firefox just press "CTRL + SHIFT + J"
  5. Did you see the javascript console?
  6. Hi, Your approach is wrong....to place a function inside config.inc.php file is bad idea. But even if you want to go that way product-list.tpl has $products variable and inside there a foreach loop that include `product-list-item.tpl` each time with $product variable. So you should put your code inside product-list-item.tpl A better approach will be to create a simple module with a unique hook and exec that hook inside the tpl file. {hook h="my_unique_hook" mod="my_module_name" product=$product}
  7. This bug was fixes in this commit https://github.com/thirtybees/paypal/commit/5b92e8709f057c7683244ca98434b958242afd2d But no newer version released after that commit. @Traumflug
  8. Its better to check if variable exists before looking for id. {if isset($product_manufacturer) && $product_manufacturer->id}
  9. yaniv14

    Accessories

    Did you always had it inside tabs or was it in a different layout (no tabs) before? Also can you stop/disable piwik and/or matomo because you have some script errors in the console and they might be causing the issue as well.
  10. yaniv14

    Accessories

    Try to add more than 1 accessories product and see if it loads. some javascript sliders dont work well with only 1 item/image.
  11. Did you try localhost
  12. Did you try to ask the module creator or the transformer theme creator to provide support for all the needed modification? Maybe they will be kind enough to help you, and save you the trouble of doing it. Maybe @lesley can try to talk to either one of them.
  13. Hi @Raymond, I am using a module from Presto-Changeo to deal with allow of combinations. Its working perfect for me, but in my case I don't need price increase/decrease per combination so I am not sure about all capabilities of this module. This is the module: https://www.presto-changeo.com/prestashop-attribute-modules/34-113-prestashop-attribute-wizard-pro-module.html#/25-prestashop_version-all_versions You can see it on my site: https://www.lens.co.il/1-day-acuvue-moist The front office is without any cache and working really fast, I am using bleeding edge version here.
  14. Hi, I think the easier way for you will be to edit header.tpl file from your theme. just before the closing </head> tag you can add. {if $page_name == 'cms'} {literal} ... the script you received from google .... {/literal} {/if} gtag_report_convertion is probably a function that comes with the google code. so you should call (run/fire) that function on your desire click event (like clicking a url or a button). you can see samples here: https://support.google.com/google-ads/answer/6331304?hl=en the 'on_click' part you will have to put in the content of the page (in the cms page editor). Good luck
  15. Can you share a link to your site
  16. tb_configuration table is used for general purpose. many core settings and modules use that table when they need to save single value without the need to create new tables. Configuration::updateValue('value_name', 'value_data'); is used to store data in that table. Configuration::get('value_name') is used to fetch data from that table.
  17. its in "tb_configuration" table, it's called "PS_SET_DISPLAY_SUBCATEGORIES"
  18. yaniv14

    Editing Products

    @datakick while I was checking something regarding this topic I've noticed that "admin.js" and "tools.js" and both loaded with versioning "?v='._PS_VERSION_" (classes/controller/AdminController => setMedia()). Now that we are working with git updater, I think it will be wise to remove versioning or even better to add git latest commit as versioning. git log -n 1 --format="%h" what do you think?
  19. The problem is that the 2nd <p> is being escaped (its probably the value itself). this is how it looks in the html. <p class="pro_list_manufacturer">&lt;p&gt;PC149Y&lt;/p&gt; - Port &amp; Company</p>
  20. My guess is that you have to manually pick this commit: https://github.com/thirtybees/custompayments/commit/69681528df138a9fc96d3b72c246da28993d0afc because I don't think its part of the latest version.
  21. I know they are using Nginx. But did they configured nginx rules for Prestashop? If not, you can point them to this link
  22. You site is using Nginx as a web server, so all rewrite rules should go in the nginx server block and not in htaccess file which created by Thirtybees. If you are on a shared hosing than you should ask your hosting company to configure it for you.
  23. I am no regex expert, but shouldn't it be:
  24. The reaason that Lesley code didn't work is because your server is running on Nginx and not on Apache. Htaccess is an override for Apache webserver.
  25. I can't seem to reproduce your bug. I ran multiple test with dragging and saving like you mentioned and everything was fine on all tests.
×
×
  • Create New...