Welcome, Guest!
By registering with us, you'll be able to discuss, share and private message with other members of our community.
-
Content Count
453 -
Joined
-
Last visited
-
Days Won
1
yaniv14 last won the day on July 21
yaniv14 had the most liked content!
Community Reputation
102 ExcellentAbout yaniv14
.png.0bb105fda6900c98333b45f9c852737b.png)
-
Rank
Yaniv Mirel
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
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?
-
Are you talking about customized product or some 3rd party module that adds custom fields?
-
yaniv14 started following Attribute Name on product list, Re-order feature, Shipstation (webservice) with TB 1.1 and PHP 7.3 not working and and 6 others
-
What kind of custom fields values?
-
Do you have any error log for the problem?
-
PayPal order missing, even though paid and with shop order number
yaniv14 replied to 30knees's question in Technical help
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. -
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.
-
Go to modules -> positions and play with the block cart position (up or down) inside displayTop section
-
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.
-
No, the one that shows when you hover the icon.
-
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.
-
Additional address copy of other clients
yaniv14 replied to jmeca's topic in Announcements about thirty bees
What about full page cache? server side cache? -
Additional address copy of other clients
yaniv14 replied to jmeca's topic in Announcements about thirty bees
What you describe looks like a caching problem. Try to disable all cache and check if it helps -
yaniv14 changed their profile photo
-
To see the console log in Firefox just press "CTRL + SHIFT + J"
-
Did you see the javascript console?
-
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}