It is possible to have sections that only customers within certain price schedules will see online. To do this, you need to create a new section link template with a very specific format.
Copy the following code into Notepad and save it within your Site1 (or equivalent folder) as something like 'Act_SectionLinePrivate.html'.
<Actinic:SHOWFORPRICESCHEDULE Schedules="2" HTML="&#60;A HREF=NETQUOTEVAR:SECTIONLINK&#62;NETQUOTEVAR:SECTIONNAME&#60;&#47;A&#62;"/>
<!-- NETQUOTEVAR:SECTIONIMAGE NETQUOTEVAR:SECTIONTEXT -->
NETQUOTEVAR:NEXT
You have to change the code in this template depending on which price schedule you want the section link to be visible within. The Schedules="2" value needs to be the ID of your desired price schedule. You can find this from the 'Price Schedules' table in the 'ActinicCatalog.mdb' database.
Note: This section really needs to be at the end of a list of sections, Otherwise unregistered customers will have a gap appearing where the link should be.
Copy the following code into Notepad and save it within your Site1 (or equivalent folder) as something like 'Act_SectionLinePrivate.html'.
<Actinic:SHOWFORPRICESCHEDULE Schedules="2" HTML="&#60;A HREF=NETQUOTEVAR:SECTIONLINK&#62;NETQUOTEVAR:SECTIONNAME&#60;&#47;A&#62;"/>
<!-- NETQUOTEVAR:SECTIONIMAGE NETQUOTEVAR:SECTIONTEXT -->
NETQUOTEVAR:NEXT
You have to change the code in this template depending on which price schedule you want the section link to be visible within. The Schedules="2" value needs to be the ID of your desired price schedule. You can find this from the 'Price Schedules' table in the 'ActinicCatalog.mdb' database.
Note: This section really needs to be at the end of a list of sections, Otherwise unregistered customers will have a gap appearing where the link should be.
Comment