OK after quite a few hours got routing working with a dynamic id. (phew)
New problem I have is the routing is replacing [space] with $
eg:
Range%20Bags/Winchester%20Pink%20Rifle%20Gun%20Bag
So how do I make it
Range-Bags/Winchester-Pink-Rifle-Gun-Bag
just for reference, this works
dmx-bind:href="{{Department_Name.replace(" “, “")}}/{{Category_Name.replace(" ", "”)}}/{{Description.replace(” “, “_”)}}”
Added a replace in there as it works fine.
UPDATE: WAS WORKING FINE
It’s all good buddy, I’ve got it working now, just incorporating the shopping cart.
Most of it done I’m just struggling a little on how to calculate the total of the cart from the repeater so it takes into account the qty’s.
UPDATE: GOT IT