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
Cart is only taxing one item
Author Message
Reply with quote
Post Cart is only taxing one item 
Hello,

I am having troubles figuring out why I can only get one item to be taxed when multple items are in the cart. Can some please look at the cart in question:

http://www.manzoniwines.com/store/agora.cgi

Please be sure to select a wine as the wine club is tax exempt.

Thanks in advance.

View user's profile Send private message
Reply with quote
Post  
One thing I am seeing is that you need to remove the following from the header file:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
<style type="text/css">
<!--
body {
   background-image: url(https://www.manzoniwines.com/bg.gif);
}
-->
</style></head>

<body>


For the proper placement of meta tags and CSS, please review the following threads:
http://www.agoraguide.com/faq/viewtopic.php?t=1156
http://www.agoraguide.com/faq/viewtopic.php?t=358

As for the sales tax, how did you set up the Wine-Club to be tax exempt???
Also, with the rest of the store, what is the tax rate and state taxed?

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  
Thanks for getting back to me.

I didn't set this site up, I am taking over the task of webmaster. So excuse the mess for now. OK I removed the header info, it took me a little while to find out where those files were. That seems to be working properly now.

As far as the tax info goes:

STATE: CA --- RATE: .0725

I got the code for the tax exempt from the yahoo groups. It is located in the "Files" section under "Docs" called "othertaxinfo.txt ". I implemented that code and placed EXEMPT in the "User5" field for those products.

Thanks for the help.

View user's profile Send private message
Reply with quote
Post  
I'm not sure if any of these things are associated, but in the option file, just AFTER <HTML> and just BEFORE </HTML>, put:
Code:
<h3>--cut here--</h3>


In the price field of your items put "0".

Let me know if either of these edits make a difference.

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  
I tried that and it is the same.

When I add different wine products to the cart it adds the tax for those items, tax is not being added to multiple quantity of a single product. Maybe that will help narrow this down.

Jeff

View user's profile Send private message
Reply with quote
Post  
Jeff,
Every time I look at your store, I keep finding html errors...
Many times errors get caused by improper html, as strange as it may seem, but I have seen it happen...

I'm not really sure what the issue is with the tax... Kinda hard to say without seeing raw files and manager settings...

Anyway, the latest errors are in the productPage-search2.inc file.
I am seeing that the file has:
Code:
</TR>
<FORM METHOD = "post" ACTION = "%%scriptURL%%">
%%make_hidden_fields%%
<table width="681"  border="0" align="center" cellpadding="0" cellspacing="0">
    <tr>
      <td valign="top" width="145"><div align="center">%%userFieldTwo%%</div></td>
      <td width="405"><div align="left"><font size="2" face="ARIAL"><b>%%name%%</b> <br>
  %%description%% <br>
  %%optionFile%% <BR>
  <!--BEGIN SELECT QUANTITY BUTTON-->
        </font>
<font size="2" face="ARIAL">%%QtyBox%%
<input name="add_to_cart_button" type="IMAGE" value="Add To Cart" src="%%URLofImages%%/add_to_cart.gif" align="right" border="0">
</font></div></td>
    </tr>
    <tr>
      <td colspan="2"><div align="right"><A HREF="%%scripturl%%?cart_id=&p=%%CategoryID%%">
          <div align="center"><img src="%%URLofImages%%/showall-small.gif" border="0"></div>
      </div></td>
    </tr>
  </table>
 
  <!--END SELECT QUANTITY BUTTON-->
</FORM>


It NEEDS to be:
Code:

<tr>
<td>
<FORM METHOD = "post" ACTION = "%%scriptURL%%">
%%make_hidden_fields%%
<table width="681"  border="0" align="center" cellpadding="0" cellspacing="0">
    <tr>
      <td valign="top" width="145"><div align="center">%%userFieldTwo%%</div></td>
      <td width="405"><div align="left"><font size="2" face="ARIAL"><b>%%name%%</b> <br>
  %%description%% <br>
  %%optionFile%% <BR>
  <!--BEGIN SELECT QUANTITY BUTTON-->
        </font>
<font size="2" face="ARIAL">%%QtyBox%%
<input name="add_to_cart_button" type="IMAGE" value="Add To Cart" src="%%URLofImages%%/add_to_cart.gif" align="right" border="0">
</font></div></td>
    </tr>
    <tr>
      <td colspan="2"><div align="right"><A HREF="%%scripturl%%?cart_id=&p=%%CategoryID%%">
          <div align="center"><img src="%%URLofImages%%/showall-small.gif" border="0"></div>
      </div></td>
    </tr>
  </table>
 
  <!--END SELECT QUANTITY BUTTON-->
</FORM>
<tr>
<td>


See, AgoraCart dynamically creates a table that encloses the productPage, so, you need to have the opening and closing <tr> & <td> tags.

What other edits have you done to any of the other .pl files in AgoraCart?


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

Thanks, I made that change. The thing is I didn't build this website or implemt the cart, I have been contracted to make some changes to this website. So I don't know which files were modified by the developer whom built this website.

Is there a file I can show you which may help? I would dislike kinda sorta maybe to have to rebuild the entire cart.

View user's profile Send private message
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