Can i used isso for a store-like website? #921
-
Hi all, I have an ancient store-like website, that hits a /product.cgi page. Each product has its id, so whenever you're looking at a product you're hitting something like /product.cgi?prod_id=234xxFr2. I would like to add the ability to comment on each product, but skimming the documentation makes me think the comment section is specifically connected to the URL and thus this won't work out of the box. Is this a correct interpretation? :) Thanks for the support, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
By default, Isso uses the URL without any question-mark parameters (e.g. You can override the thread id for each page by setting Another option would be to change the embed script to use |
Beta Was this translation helpful? Give feedback.
-
A side-note though is that you probably want something heavier (with a proper database backing it) if this is a high volume web site. |
Beta Was this translation helpful? Give feedback.
By default, Isso uses the URL without any question-mark parameters (e.g.
https://foo.bar/baz?foo
will receive, through Javascriptwindow.location.pathname
, the internal ID/baz
)You can override the thread id for each page by setting
data-isso-id
in the embed part, see docs: Client config. That way, you can still have URL query-param-based routing.Another option would be to change the embed script to use
window.location.href
instead.