The Official Website of AgoraCart and Agora.cgi
AgoraCart.com Demos Download AgoraCart User Manuals & Wiki Gold Members Forum Go Gold Now! Gold Version Memberships

AgoraCart.com

About
Features
Download
Payment Gateways
Send a Donation
Founders Club
BLOG: News & Updates

Showcases & Demos

AgoraCart Demos
Shop Live Stores

Downloads & Add-ons

Gold Version Downloads
DBwizz Database Mgr.
AgoraCart.com Store

Help & Support

User Manuals
Gold Version Users Forum
Gold Version Chat
Tech Support
Certified Agora Pros
Certified Designers
Hire a Freelancer

Gold Version Members

Member Benefits
Join Today!
Gold Members Home
Gold Version Users Forum
Gold Version Chat Rooms
Gold Version Downloads

For Store Owners

Merchant Accounts
Cool Resources
Advertise Here
"Powered by" Logos
Web Hosting Search

Misc.

Contact Us
MEET's Talking Guide
The Ancient Greek Agora






AgoraCart Free User Forums

This is the official FAQ and Cool Tips guide For the AgoraCart shopping Cart software


Official Sponsors of the AgoraCart Project:

       


RegisterSearchFAQLog in
Reply to topic Page 1 of 1
Productpage chance
Author Message
Reply with quote
Post Productpage chance 
In the row of productpages : ppinc=1a ..1d there is no decent productpage to choose

I do get a productpic and right from that the description and text for a product

I like to see the producttitle/description broader under the productpicture ( it is now vertical right from the productpicture and narrow: so difficult to read

I am wondering why there is no default productpage in the ppinc range nr 1 with a product name/description below the productpage ? : or do i overlook this ?

If not than i am forced to make a custom productpage : any ideasa to make this?

Jan

View user's profile Send private message Send e-mail
Reply with quote
Post  
You will need to make a custom productPage to suit your needs...


_________________
God Bless!
Bonnie - AgoraCart Moderator

Get a Gold Membership
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger ICQ Number
Reply with quote
Post  
No problem Bonnie if you tell me what is the approach to do this
At the moment i use ppinc=2a and i am reasonable satisfied with this productpage , so i mus t cut half of this one Laughing
And it should be nice to have a itemnumber ( database) of the productpage
Well some people are living from designing productpage so i can understand why such a basic productpage is not included => has version 5 more to offer ?

Jan

View user's profile Send private message Send e-mail
Reply with quote
Post  
Jan,
Just do it.
If you're using v5 then you'll, also need to adjust the CSS.


_________________
God Bless!
Bonnie - AgoraCart Moderator

Get a Gold Membership
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger ICQ Number
Reply with quote
Post  
I do use version 4 ( if there was a payment gateway : IDEAL than is worth to go to version 5 )

So let us start from scratch : a empty page and analyse how the productpage.inc is build up
The existing row of productpages templates are : 1 a.., 2a... and 4a.. and search,search2 and some more ( without the option feaure from Ralph.. )

Can we find someone from the developers who made this productpages and he/she tell us the general idea behind constructing the productpages?
To help the agora shopowners: this vital info can be placed on WIKI

View user's profile Send private message Send e-mail
Reply with quote
Post  
From basic observation of the productPages available one can deduce that they are basic html pages that utilize "tokens" to display dynamic data. For some of the "multiple item per row" pages, agorascript is used to create those displays, however, the basic thing of it being an html page that utilizes "tokens" still remains.
This is just simple observation of what has already been given as examples.
Custom ppinc pages can be created based on those examples...
This is really nothing that is difficult or needs a lot of explaining...

HTH!


_________________
God Bless!
Bonnie - AgoraCart Moderator

Get a Gold Membership
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger ICQ Number
Reply with quote
Post  
Oke i do need productpage 1a and the productdesription must be placed under the productpicture

code productpage 1a (ppinc=1a )
Code:
<TR>
<TD COLSPAN = "3"><HR></TD>
</TR>

<TR WIDTH="550">
 
<TD ALIGN="CENTER" WIDTH="160" VALIGN="MIDDLE">

<FONT FACE="ARIAL" SIZE="2">
<FORM METHOD = "post" ACTION = "%%scriptURL%%">
%%make_hidden_fields%%
<BR>
%%optionFile%%
<BR>

<P>

<!--BEGIN SELECT QUANTITY BUTTON-->
<TABLE>
<TR ALIGN="CENTER">
 <TD VALIGN="MIDDLE">%%QtyBox%%</TD>
 <TD VALIGN="MIDDLE"><INPUT TYPE="IMAGE"
 NAME="add_to_cart_button" VALUE="Add To Cart"
 SRC="%%URLofImages%%/add_to_cart.gif" BORDER="0">
 </TD>
</TR>
</TABLE>
<!--END SELECT QUANTITY BUTTON-->

</TD>

<TD ALIGN="CENTER" WIDTH="150">%%image%%</TD>
 
<TD WIDTH="265">

<FONT FACE="ARIAL" SIZE="2">

<b>%%name%%</b>

<br>

%%description%%

<br>

<font color="#FF0000">%%price%%</font>

<br>

</FONT>

</TD>

</FORM>

</TR>

<TR>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td align="right">

<A HREF="%%scripturl%%?dc=1&%%href_fields%%">
<FONT FACE=ARIAL>Check Out</FONT>
</A>

</TD>
</TR>


View user's profile Send private message Send e-mail
Reply with quote
Post  
So, move the %%description%% there...
It's just basic HTML...


_________________
God Bless!
Bonnie - AgoraCart Moderator

Get a Gold Membership
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger ICQ Number
Reply with quote
Post  
scottcrew wrote:
So, move the %%description%% there...
It's just basic HTML...


Yes for that i must exactly know how a table in HTML is defined...
The definition of a table differs from a definiton say in Mathematics ( matrix ):
a tablerow is horizontal
a tablecolumn is vertical

So A table row is for me a horizontal placed in math, but for a HTMLtable : a tablerow is vertical placed
There are three elements involved : table, tr ( tablerow ) and td (table data)
Within the element
Code:
<table>
the data will be in principal ordened in rows and rows will be marked with the aid of the element : < tr > and the data in the cells will be placed in the
< td > element
So the table stucture is :
Code:
<table > <tr> < td > </td> </tr> </table>


Harnassed with this knowledge it must b epossible to reconstruct the productpage.ppinc=1a structure

View user's profile Send private message Send e-mail
Reply with quote
Post  
Oke, basic HTML but someone could think that the three tags for a table are always together used
But the productpage shows that the elements <tr > <td> </td> </tr> can also be used alone and not embedded in a table tag :
Code:
<table > <tr> < td > </td> </tr> </table>
as i it can see now
So the table tag gives the structure ..of a ... table

.. i make some exercise with it

View user's profile Send private message Send e-mail
Reply with quote
Post  
i really don't understand why there is no defaultpage with the productdescription under the productpicture and some variations for this productpage

Instaed of that there is only one productpage 1a and there is no decent information to construct these productpages for me
So on Wiki there must be made a explanation on how this must be done by the developers.
Ridicoulous that it is not possible now for a shopowner to make a own productpage within a half hour

View user's profile Send private message Send e-mail
Display posts from previous:
Reply to topic Page 1 of 1
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum