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
can't arrange product page inc.
Author Message
Reply with quote
Post can't arrange product page inc. 
I read prior post on this issue and still can't arrage to have picture on top of description. i have edited product page inc but no good results. end up putting back default. can someone help?

View user's profile Send private message
Reply with quote
Post  
I do this kind of thing ALL THE TIME....
Can you tell us or show us what you did do? That way we can better direct you in the direction you need to go. Of course, you could just hire someone to do it for you...


_________________
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 changed the position on the code of the items, some went were i wanted but then i would loose the right pane. by the way site is www.idtagsforall.com. all i want is to put the text description at the botton of pics so its not shrinked. thank you.

View user's profile Send private message
Reply with quote
Post  
Well, obviously you must've "changed the position on the code of the items"... Rolling Eyes
I need more specifics to better help you...

I tell you, I have been seeing soooo many ambiguous requests for help... very hard to help when I do not have enough info to make an educated, clear response that will really help you...
We need specifics, examples, actual code posted, etc....
Sometimes makes me just want to stop and not respond... I kinda feel like people must not want help too badly if they can't post clear, concise information to diagnose and solve an issue.

So, please, post EXACTLY what you changed... Post the entire file, if you like...
But, give us more detail to go on...


_________________
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  
Quote:
MODERATOR NOTE: Moderator removed quote of previous poster's post.
DO NOT
quote the post of the poster directly before your post... It is redundant and takes up board space...



this is the code, i separate lines for better understanding
Code:

<tr><td class="ac_product_desc" width=190>

<form method="post" action="%%scriptURL%%">

%%make_hidden_fields%%<br/>

<!--BEGIN SELECT QUANTITY BUTTON-->



<td class="ac_add-quantity"><input type="image" name="add_to_cart_button" value="Add To Cart" src="%%ButtonSetURL%%/add_to_cart.gif">

</p></td></tr></table>


<td class="ac_product_desc">

<b>%%name%%</b><br/><tr>


</td><td class="ac_product_image">%%image%%</td>


<td></td><td>&nbsp;</td><td class="ac_product_desc">
<a href="%%scripturl%%?dc=1&%%href_fields%%">Check Out</a></td>




<!--END SELECT QUANTITY BUTTON-->

<table class="ac_add-quantity"><tr><td class="ac_add-quantity">%%QtyBox%%</td>








%%optionFile%%<br/><p>





</tr>

%%description%%</tr>


<tr>
<span class="ac_product_price">%%price%%</span><br>

</td></form></tr>
<tr><td colspan=3><hr/></td></tr>


</table>


View user's profile Send private message
Reply with quote
Post  
Thank-you for posting the code...
Oh my!! Kinda looks like a bomb went off in your code... I am seeing improper html coding all over the place... HTML coding rules need to be maintained in these files... The exception is that the file begins with:
Code:
<tr><td>

and ends with:
Code:
</tr></td>


Everything in between MUST follow proper HTML coding rules...

Try this, instead:
Code:

<!-- start of product page -->
<!--agorascript-pre
{ #Start of controller code, probably should leave this alone ;-)
local ($myans)="";
if ($rowCount == (1+$minCount)) { #first one
  $ags_row_item=0;
  $ags_tot_item=0;
  $myans .= '<tr><td colspan="3"><table width="100%" border=0'."\n";
 }
$ags_row_item++;
$ags_tot_item++;
if (($rowCount == ($maxCount)) || ($rowCount == ($num_returned)))
 { # very last one, need to join these two cells, no border
  if ($ags_row_item == 1) { # first and only one
    $myans .= '<tr><td width="100%" colspan="2">'."\n";
    $myans .= '<table width="100%" border="0">'."\n";
   }
 }
if ($ags_row_item == 2) { # second one
  $ags_row_item=0; #reset counter
  $myans .= '<td width="50%"><table width="100%" border="0">'."\n";
 } else { #first one
  $myans .= '<tr><td width="50%"><table width="100%" border="0">'."\n";
 }
return $myans;
} # end of controller code
-->
   <tr>
      <td class="ac_product_opt-add">
      <form method="post" action="%%scriptURL%%">
         %%make_hidden_fields%%
         <h3 class="ac_product_name">%%name%%</h3>
         %%optionFile%%
         <br>
         <span class="ac_product_price">%%price%%</span>
         <!--BEGIN SELECT QUANTITY BUTTON-->
         <table class="ac_add-quantity"><tr><td class="ac_add-quantity">%%QtyBox%%
               </td><td class="ac_add-quantity">
                  <input type="image" name="add_to_cart_button" value="Add To Cart" src="%%ButtonSetURL%%/add_to_cart.gif">
               </td></tr></table>
         <!--END SELECT QUANTITY BUTTON-->
      </form>
      </td>
      <td class="ac_product_image">
      %%image%%
      <p class="ac_product_desc">%%description%%</p>
      </td>
   </tr>
<!--agorascript-pre
{ # more controller code
local ($myans)="";
if (($rowCount == ($maxCount)) || ($rowCount == ($num_returned)))
 { # very last one
  if ($ags_row_item == 1) { # first and only one
    $myans .= '</table></td>'."\n";
    $myans .= '<td width="50%"><table width="100%">'."\n";
   }
 }
return $myans;
} # end controller code
-->
   <tr>
      <td colspan=2>
      <table width='100%' border=0 cellpadding=0 cellspacing=0 class="ac_product_desc">
         <tr>
            <td width='33%' align=center><a href="%%scripturl%%?dc=1&amp;%%href_fields%%">View Cart</a></td>
            <td width = '33%' align=center><a href='%%StepOneURL%%?order_form_button.x=1&amp;%%href_fields%%'>Check Out</a></td>
         </tr>
      </table>
      </td>
   </tr>
<!--agorascript-pre
{ # more controller code
local ($myans)="";
if ($ags_row_item == 1) { # first one
  $myans .= '</table></td>'."\n";
 } else { # second one
  $myans .= '</table></td></tr>'."\n";
 }
if (($rowCount == ($maxCount)) || ($rowCount == ($num_returned)))
 { # very last one, need to join these two cells, no border
  if ($ags_row_item == 1) { # first and only one
    $myans .= '</tr></table></td>'."\n";
   }
 }
if (($rowCount == ($maxCount)) || ($rowCount == ($num_returned)))
 { # very last one
#  if ($ags_row_item == 1) { # finished first one, add a blank dummy
#second
#    $myans .= '<td>&nbsp;</td></tr>'."\n";
#   }
  $myans .= '</table></td></tr>'."\n";
 }
return $myans;
} # end controller code
-->

<!-- end of product page-->


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  
Quote:
MODERATOR NOTE: Moderator removed quote of previous poster's post.
DO NOT
quote the post of the poster directly before your post... It is redundant and takes up board space...


beautifull!! thanks a lot, works great.

View user's profile Send private message
Reply with quote
Post  
Did you read the moderator note in the previous post????
I had to post it again...


_________________
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
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