
RE: How do you select what Product Page is being used?
hell-o
look in the store/html/html-templates folder.
you will see a bunch of files named productPage-whatever.inc or maybe no dash. as long as it has .inc as an extension and productPage preceeding the "-" you can use it to display the products in the process below.
go to your website then go to your store. pic a category to view.
in your browser address bar you will see something like:
http://www.yourdomain.com/store/agora.cgi?cart_id stuff&product=yourproduct&xm=on
don't worry whether or not the stuff in your address bar is exactly like that. just append the end of the url with this:
&ppinc=
so using the example above it will look like this:
http://www.yourdomain.com/store/agora.cgi?cart_id stuff&product=yourproduct&xm=on&ppinc=
now all you have to do is add whatever is after the dash on the productPage.inc you want to use for testing. for example. in the example above to test productPage-2a.inc you would add only the 2a like so:
http://www.yourdomain.com/store/agora.cgi?cart_id stuff&product=yourproduct&xm=on&ppinc=2a
then hit enter and the store will display your products with the productPage-2a.inc
to test with 4a it would look like this:
http://www.yourdomain.com/store/agora.cgi?cart_id stuff&product=yourproduct&xm=on&ppinc=4a
you can just keep entering the ppincs you want to view until you find one that looks good with your layout.
once you find the one you want to use as the default then go to the html-templates folder and rename your productPage.inc file to productPage.in_
then rename the file you want as the default ppinc to productPage.inc it is case sensitive so be careful with the
P in page.
now whenever anyone views the products they will be displayed with that producPage file.
regards,
dan