You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.
Is there a way that we can create a link to a category from the "Heading Name" for slots 1 to 5 of the Featured Product Display on the homepage
Offline
You could add a little JavaScript that attaches a click event to those headings that would accomplish what you want to do. Just add the JS to your splash page. Your selectors would probably be best defined as:
#kcontent .kprodlistheader:nth-child(1)
#kcontent .kprodlistheader:nth-child(2)
#kcontent .kprodlistheader:nth-child(3)
#kcontent .kprodlistheader:nth-child(4)
#kcontent .kprodlistheader:nth-child(5)
Offline