 |
Page 1 of 1
|
Author |
Message |
dperez78
Guest
|
 product view
Hello, I have three questions. I would like to know how i can have the view when viewing my product pages one cell per product instead of two for example http://www.undergroundcards.us/cgi-bin/store/agora.cgi?cart_id=3472775.13593*OR8hV6&xm=on&product=GiantPezDispensers i would like to have a single product per line. is that possible? also can i edit the product view to have it some what like my current HTML pages which are located www.undergroundcards.us/pez.html. when i click on the image i get more details and I'm able to get a bigger image. last question, is there a way to have discount codes for some customers not everyone?
|
Mon May 02, 05 3:58 pm |
|
 |
dperez78
Guest
|
one more. how can i set up my keywords and meta tags with the cart?
thanks
|
Mon May 02, 05 4:00 pm |
|
 |
scottcrew
Moderator
Joined: 13 Feb 2004
Posts: 7516
Location: The West Side of MI USA
|
David,
AgoraCart is extremely versatile & customizable.
You can handle the layout of products with the various productPage.inc files found in the html/html-templates directory of the store.
There are many layouts and there are a couple that will meet your needs for both a single product per line and a details page.
To set up meta tags, javascript & CSS follow the instructions in the following thread:
http://www.agoraguide.com/faq/viewtopic.php?t=1156
HTH!
_________________ God Bless!
Bonnie - AgoraCart Moderator
Get a Gold Membership
|
Mon May 02, 05 4:34 pm |
 |
 |
dperez78
Guest
|
Thanks for your help. I tried to edit the productPage.inc but for some reason i cant get it to place with in the body. i have edited the file many time and i can seem to make if work, i ended up replacing it with the original but i will try again tonight.
about my meta tags I get an extra character ">" on top of the header. will you tell what I did wrong?
[/code]$sc_standard_head_info = q~ <title>Trading Cards from Yu-Gi-Oh, Pokemon, Marvel and DC VS System to Giant Pez Dispensers</title> ~;
$sc_standard_body_info = qq~
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="Author" content="David Perez">
<meta name="CATEGORY" content="home page">
<meta name="Classification" content="Underground Cards Website">
<meta name="copyright" content="©2003 Underground Cards Co. All rights reserved">
<meta name="Description" content="Undergroundcards.us has a Huge selection of Giant Pez Dispensers, Yu-Gi-Oh cards, Duelmasters, Dragonballz, Nascar, football cards, baseball cards, hockey collectibles.">
<meta name="GENERATOR" content="Microsoft FrontPage 6.0">
<meta name="Keywords" content="Yu-Gi-Oh, yugioh, yugiho, stater deck, kaiba, yugi, pegasus, joey, magic ruler, booster box, legacy of darkness, pharaonic guardian, labyrinth of nightmare, Dark Crisis, Magician's Force, Pharaoh's Servant, Metal Raiders, Blue Eyes White Dragon, Invasion of Chaos, Ancient Sanctuary, Soul Of The Duelist, trading cards, Evolution, Dark Beginning, Rise of Destiny, dragonball, magic, trading card games, memorabilia, simpsons, monopoly, collectible tins, peanuts,Lord of the rings,Starwars, Star Wars Giant Pez Dispeser, Darth Vader, Chewbaca, R2-D2, C-3PO, General Grievous, Death Star, Emperor Palpatine, Valentines Heart, Valentine's Giant Pez">
<meta name="MS.LOCALE" content="EN-US">
<meta name="ObjectType" content="Document">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta name="Publisher" content="UNDERGROUNDCARDS">
<meta name="rating" content="General">
<meta name="Revisit-after" content="daily">
<meta name="Robots" content="ALL">
<meta name="Search Engines" content="AltaVista, AOLNet, Infoseek, Excite, Hotbot, Lycos, Magellan, LookSmart, CNET">
<meta name="Updated" content="daily"> ~; Code:
|
Tue May 03, 05 11:03 am |
|
 |
scottcrew
Moderator
Joined: 13 Feb 2004
Posts: 7516
Location: The West Side of MI USA
|
David,
You've got things set up wrong.
This variable: $sc_standard_body_info
Is for the body tag info and ONLY the body tag info, like so:
Code:$sc_standard_body_info = qq~ link="#000000" bgcolor="#FFFFFF" vlink="green" text="#000000" background="mybackgroundimage.jpg" ~;
Your code for meta tags, javascript & CSS all go in the variable: $sc_standard_head_info
It should be like this:
Code:
$sc_standard_head_info = q~ <title>Trading Cards from Yu-Gi-Oh, Pokemon, Marvel and DC VS System to Giant Pez Dispensers</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="Author" content="David Perez">
<meta name="CATEGORY" content="home page">
<meta name="Classification" content="Underground Cards Website">
<meta name="copyright" content="©2003 Underground Cards Co. All rights reserved">
<meta name="Description" content="Undergroundcards.us has a Huge selection of Giant Pez Dispensers, Yu-Gi-Oh cards, Duelmasters, Dragonballz, Nascar, football cards, baseball cards, hockey collectibles.">
<meta name="GENERATOR" content="Microsoft FrontPage 6.0">
<meta name="Keywords" content="Yu-Gi-Oh, yugioh, yugiho, stater deck, kaiba, yugi, pegasus, joey, magic ruler, booster box, legacy of darkness, pharaonic guardian, labyrinth of nightmare, Dark Crisis, Magician's Force, Pharaoh's Servant, Metal Raiders, Blue Eyes White Dragon, Invasion of Chaos, Ancient Sanctuary, Soul Of The Duelist, trading cards, Evolution, Dark Beginning, Rise of Destiny, dragonball, magic, trading card games, memorabilia, simpsons, monopoly, collectible tins, peanuts,Lord of the rings,Starwars, Star Wars Giant Pez Dispeser, Darth Vader, Chewbaca, R2-D2, C-3PO, General Grievous, Death Star, Emperor Palpatine, Valentines Heart, Valentine's Giant Pez">
<meta name="MS.LOCALE" content="EN-US">
<meta name="ObjectType" content="Document">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta name="Publisher" content="UNDERGROUNDCARDS">
<meta name="rating" content="General">
<meta name="Revisit-after" content="daily">
<meta name="Robots" content="ALL">
<meta name="Search Engines" content="AltaVista, AOLNet, Infoseek, Excite, Hotbot, Lycos, Magellan, LookSmart, CNET">
<meta name="Updated" content="daily">
~;
HTH!
_________________ God Bless!
Bonnie - AgoraCart Moderator
Get a Gold Membership
|
Tue May 03, 05 11:14 am |
 |
 |
dperez78
Guest
|
Great Thanks!! that wasn't to hard. i guess i been trying to figure out the productPage.inc that i ended up working on my meta tags and couldn't figure that out. One more question. how can i have my product image call for a bigger image and a different description? i appreciate you help hope full i can bug you once more if i cant figure out the productPage.inc.
Thanks
Dave
|
Tue May 03, 05 11:48 am |
|
 |
scottcrew
Moderator
Joined: 13 Feb 2004
Posts: 7516
Location: The West Side of MI USA
|
That would be handled in the productPage.inc file. You can work in a link to a diiferent ppinc page that displays the product detail.
HTH!
_________________ God Bless!
Bonnie - AgoraCart Moderator
Get a Gold Membership
|
Tue May 03, 05 12:03 pm |
 |
 |
dperez78
Guest
|
I was able to figure out some problems for now until i get tired of the look. on last question. how do i make a search form. i created a search form but cant seem to make it work. I have
Code:form METHOD="POST" $sc_store_url"; &uncapture_STDOUT; } action="%20%3C!--agorascript-post%20{%20&capture_STDOUT;%20print%20">
<input TYPE="hidden" NAME="cart_id" VALUE="%%cart_id%%">
<input TYPE="text" NAME="keywords" SIZE="20" MAXLENGTH="40">
<input TYPE="hidden" NAME="ppinc" VALUE="search">
<input TYPE="hidden" NAME="exact_match" VALUE="on">
<input TYPE="submit" NAME="search_request_button" VALUE=" Search "></form>
Can you help me with that?
Thanks Dave,
|
Tue May 03, 05 4:43 pm |
|
 |
scottcrew
Moderator
Joined: 13 Feb 2004
Posts: 7516
Location: The West Side of MI USA
|
All you really need is:
Code:
<form METHOD="POST" action="agora.cgi">
<input TYPE="hidden" NAME="cart_id" VALUE="%%cart_id%%">
<input TYPE="text" NAME="keywords" SIZE="20" MAXLENGTH="40">
<input TYPE="hidden" NAME="ppinc" VALUE="search">
<input TYPE="hidden" NAME="exact_match" VALUE="on">
<input TYPE="submit" NAME="search_request_button" VALUE=" Search "></form>
No need to make things more complicated than they need to be...
HTH!
_________________ God Bless!
Bonnie - AgoraCart Moderator
Get a Gold Membership
|
Tue May 03, 05 5:06 pm |
 |
 |
dperez78
Guest
|
great thank you.
Dave
|
Tue May 03, 05 5:09 pm |
|
 |
dperez78
Guest
|
Hello Again, I am having problem with one of my productPage-search.inc
I edited the file and everything looks good except I cant add to cart and the "Show This Category" links are not working. every time i click on them i get a forbidden message the code that i have for the page is
Code:
<head>
<meta http-equiv="Content-Language" content="en-us">
</head>
<table border="0" width="100%" id="table1" height="103">
<tr>
<td>
<p><b>%%name%%</b></p>
<table border="0" width="100%" id="table3">
<tr>
<td width="153">%%image%%</td>
<td>%%description%%</td>
</tr>
</table>
<table border="0" width="100%" id="table2">
<tr>
<td width="186"><font color="#CC0000">Sale Price: <b>%%price%%</b></font></td>
<td width="198">
<form method="POST" action="%25%25scriptURL%25%25">
<p>
<!--BEGIN SELECT QUANTITY BUTTON-->
<TABLE id="table3">
<TR ALIGN="CENTER">
<TD VALIGN="MIDDLE"><INPUT TYPE="TEXT" NAME="%%itemID%%" SIZE="3"
MAXLENGTH="3" VALUE="1"></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>
</TABLE>
<!--END SELECT QUANTITY BUTTON--></p>
</form>
</td>
<td width="141"><FONT FACE="ARIAL" SIZE="2">
<a href="%25%25scripturl%25%25?cart_id=&p=%ÊtegoryID%%">
<FONT FACE=ARIAL>Show This</FONT>
Category</a></td>
<td><FONT FACE="ARIAL" SIZE="2">
<A HREF="%%scripturl%%?dc=1&%%href_fields%%">
<FONT FACE=ARIAL>Check Out</FONT></A></td>
</tr>
</table>
<FONT FACE="ARIAL" SIZE="2">
<HR>
</font>
</td>
</tr>
</table>
One other thing how can I have on the <title> something like "Search results and search keyword"
Thank you
|
Thu May 05, 05 9:47 am |
|
 |
scottcrew
Moderator
Joined: 13 Feb 2004
Posts: 7516
Location: The West Side of MI USA
|
David,
There is a problem with perhaps whatever you are using to edit the files.
What are you using?
Whatever it is has been replaced the percent signs in a few areas which will cause things not to work.
In particular, the foillowing lines:
<form method="POST" action="%25%25scriptURL%25%25">
and
<a href="%25%25scripturl%25%25?cart_id=&p=%ÊtegoryID%%">
They should be:
<form method="POST" action="%%scriptURL%%">
and
<a href="%%scripturl%%?cart_id=&p=%%CategoryID%%">
HTH!
_________________ God Bless!
Bonnie - AgoraCart Moderator
Get a Gold Membership
|
Thu May 05, 05 10:14 am |
 |
 |
dperez78
Guest
|
I did noticed that but i wasn't sure if it was part of the code. I am using frontpage to edit the look since I am not that great in editing the code. They work now with the exception the add to cart link, when i click the add to cart button it adds the item but after id does it doesn't take me back to the results page or product page. what it does is it shows every item that i have in my database. Not just the Category that i was currently on but all the Categories. why is that? thanks
David
|
Thu May 05, 05 10:55 am |
|
 |
scottcrew
Moderator
Joined: 13 Feb 2004
Posts: 7516
Location: The West Side of MI USA
|
Well, dislike kinda sorta maybe to say this, but you can't use FrontPage to edit anything in AgoraCart.
It tends to do exactly what you are seeing, replace code it shouldn't be messing with.
You will need to edit the files in a plain html editor.
HTH!
_________________ God Bless!
Bonnie - AgoraCart Moderator
Get a Gold Membership
|
Thu May 05, 05 12:13 pm |
 |
 |
dperez78
Guest
|
OK, is that why i have the redirection problem?
i downloaded 1st page 2000 will that work better?
Thanks
|
Thu May 05, 05 12:46 pm |
|
 |
scottcrew
Moderator
Joined: 13 Feb 2004
Posts: 7516
Location: The West Side of MI USA
|
David,
I haven't heard of that.
I do have several editors listed on my resources site:
http://resources.scottcrew.com
HTH!
_________________ God Bless!
Bonnie - AgoraCart Moderator
Get a Gold Membership
|
Thu May 05, 05 4:39 pm |
 |
 |
|
The time now is Sat May 03, 25 1:00 pm | All times are GMT - 7 Hours
|
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
|
|
|