changing the way Special Fields appear
Printed From: ProductCart E-Commerce Solutions
Category: ProductCart
Forum Name: Customizing ProductCart
Forum Description: Exchange messages with other users that are customizing ProductCart.
URL: https://forum.productcart.com/forum_posts.asp?TID=1869
Printed Date: 23-April-2025 at 6:02am Software Version: Web Wiz Forums 12.04 - http://www.webwizforums.com
Topic: changing the way Special Fields appear
Posted By: cpgmar
Subject: changing the way Special Fields appear
Date Posted: 02-August-2008 at 12:59pm
I need to highlight the Customer Special Fields to change the font/size/color so they are more visible to customers on the login.asp page. Where can I change them? I can't find anything in the css file and I don't want to mess up the coding. Can I add html code somewhere to fix this?
Thanks for any help.
------------- Cindy
The Tasteful Garden
www.tastefulgarden.com
|
Replies:
Posted By: Hamish
Date Posted: 02-August-2008 at 8:23pm
Hi, Just add the HTML code in the fields where you define the Customer Special Fields. Either straight HTML tags, or tags to allow you to then style it via CSS.
------------- Editing ProductCart Code?
See http://wiki.earlyimpact.com/developers/editcode" rel="nofollow - WIKI Guidelines for Editing ProductCart's ASP Source Code
|
Posted By: Hamish
Date Posted: 02-August-2008 at 8:28pm
If you decide you would rather have the style managed from the code it's in a section within login.asp between (approx) lines 1720-1780
------------- Editing ProductCart Code?
See http://wiki.earlyimpact.com/developers/editcode" rel="nofollow - WIKI Guidelines for Editing ProductCart's ASP Source Code
|
Posted By: cpgmar
Date Posted: 05-August-2008 at 6:07pm
Thanks Hamish, I added the html code into the field and the tags appear in the fields themselves, I don't know why
Where can I insert html code in the following without messing up the code?:
<td colspan="2"> <%if pcArr(2,k)="1" then%> <input type="hidden" name="custfield<%=pcArr(0,k)%>" <%if pcArr(10,k)<>"" then%>value="<%=pcArr(10,k)%>"<%else%><%if pcArr(3,k)<>"" then%>value="<%=pcArr(3,k)%>"<%else%>value="1"<%end if%><%end if%>> <%else%> <input type="hidden" name="custfield<%=pcArr(0,k)%>" value="<%if session("idcustomer")=0 then%><%if pcArr(3,k)<>"" then%><%=pcArr(3,k)%><%else%><%=Session("pcSFcustfield"&pcArr(0,k))%><%end if%><%else%><%if pcArr(10,k)<>"" then%><%=pcArr(10,k)%><%else%><%=Session("pcSFcustfield"&pcArr(0,k))%><%end if%><%end if%>"> <%end if%> <input type="hidden" name="pcv_ShowFieldRequired" value="NO" /> </td>
------------- Cindy
The Tasteful Garden
www.tastefulgarden.com
|
Posted By: Hamish
Date Posted: 05-August-2008 at 8:54pm
Hi Cindy. What HTML did you try to add & where? I tried it on one of my systems & it worked OK, perhaps we used different tags or something else caused the issue - lets start with trying to get it working for you before resorting to updating the source code.
------------- Editing ProductCart Code?
See http://wiki.earlyimpact.com/developers/editcode" rel="nofollow - WIKI Guidelines for Editing ProductCart's ASP Source Code
|
|