You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We can set product_where in BE (flexform) but, if I'm not wrong, we can't set it with Typoscript and it could be very useful.
By instance, using Typoscript, while showing the SINGLE view of a product (uid=123), could be useful to display also the other products (LIST) present in this category but not display the current product in this list (WHERE uid != 123)
The text was updated successfully, but these errors were encountered:
In this use case I need a product list just after the product detail that displays other products (except current one).
Unfortunately, with current tt_products filters, it's not possible to add a condition like uid != {GP:tt_products|product} to filter out current product because the TS parameter is not passed to stdWrap.
For this use case there exists already the related and the accessory products lists.
And you can already use this setup:
plugin.tt_products.conf.tt_products.LISTRELATED.filter.where.field {
uid NOT IN (123)
}
Maybe this setup does not work yet and needs improvement.
However it still would not help you, because the value of uid varies for each product.
Can the placeholder be used here? {GP:tt_products|product}
We can set
product_where
in BE (flexform) but, if I'm not wrong, we can't set it with Typoscript and it could be very useful.By instance, using Typoscript, while showing the SINGLE view of a product (uid=123), could be useful to display also the other products (LIST) present in this category but not display the current product in this list (WHERE uid != 123)
The text was updated successfully, but these errors were encountered: