Hi again, i noticed you dont use the sp_cat column in idx_link, but its no split off and the sponsor information uses its own table using joins.
I have a request to make my life easier, can the sp_cat column in the idx_link table also be updated to read 1/0 depending on if the link is sponsored, simply because it will enable me to use smarty if
Yes, we no longer use sp_cat but prefer to populate them in new table.
Please see rows.html. You can use the following code in all template files ends with _rows.html and detail_link.html.
Code:
<%if $sponsored%>
........
<%elseif $premium%>
.......
<%else%>
.....
<%/if%>