Jump to content
thirty bees forum

yaniv14

Members
  • Posts

    580
  • Joined

  • Last visited

  • Days Won

    24

Everything posted by yaniv14

  1. yaniv14

    Payment Method

    If you want to use Chex i am sure that @datakick will be happy to help you solve this minor issue you are having with carrier as array
  2. So its a core bug and it should be tracked in Github so it won't be forgotten. Did you check it with Default or Niara theme? and on what TB version are you working?
  3. Are you talking about customized product or some 3rd party module that adds custom fields?
  4. What kind of custom fields values?
  5. I am not familiar with Mollie module, but all the payment modules I am aware of don't really use the next available order number when using redirect method to payment gateways, they just send the cart id and expect to get it back when being redirected back to TB. and only than using the cart id with validateOrder function to create an order in the system. thats the proper way for creating an order from payment module. cart id is unique for a specific cart & customer so I don't really know how its possible to mix orders with carts unless the payment module is sending the wrong cart id or processing an order based on wrong cart id.
  6. I don't think there should be a limit of 128 chars for user agent. But you can truncate the user agent to 128 chars like this: substr($_SERVER['HTTP_USER_AGENT'], 0, 128). Anyway I don't think that this kind of information is valuable to you because you probably use GA or other tools to collect this data.
  7. Go to modules -> positions and play with the block cart position (up or down) inside displayTop section
  8. I would first try to disable friendly urls and see if it works. And if it does I suggest to setup the same url patterns like you had before.
  9. No, the one that shows when you hover the icon.
  10. 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.
  11. What you describe looks like a caching problem. Try to disable all cache and check if it helps
  12. To see the console log in Firefox just press "CTRL + SHIFT + J"
  13. Did you see the javascript console?
  14. 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}
  15. This bug was fixes in this commit https://github.com/thirtybees/paypal/commit/5b92e8709f057c7683244ca98434b958242afd2d But no newer version released after that commit. @Traumflug
  16. Its better to check if variable exists before looking for id. {if isset($product_manufacturer) && $product_manufacturer->id}
  17. 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.
  18. 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.
  19. 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.
  20. 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.
  21. 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
×
×
  • Create New...