Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

IdiotWind

Archived
  • Posts

    12
  • Joined

  • Last visited

Profile Information

IdiotWind's Achievements

  1. Jack, I found the solution to the problem with the category description not wrapping properly on the category page. I don't know if the problem is unique to my selection of contributions I have installed or not. But for the record, if you have a manufacturer's drop down box showing in the category description page, the line <td ><h2><?php echo $htc['htc_description']; ?></h2></td> should be changed to this line <td align="left" colspan="2" class="category_desc"><h2><?php echo $htc['htc_description']; ?></h2></td> and the text will wrap using the full width fo the center box.
  2. Jack, Sorry for the confusion. Products are listed on my site when I click on a categories selection from the left column categories box. If you click on Accessories, let's say, you will see a Category Title in the middle section of the page with a description of the category under it. There are products listed on the page but under the category description. Next to the title on the right will be a manufacturer's drop down box if the products listed below are not all from one manufacturer. An example of what I mean is at my shop at http://www.balletartsdancewear.com/catalog/index.php?cPath=6 This is under the Accessories category. Note: that on this site I am using the "breadcrumbs" metatag idea to handle metatags and the Categories Description contribution. You can see how the category description fills the whole space under the manufacturer's drop down box. On my home computer I have installed the Header Tags contribution which is working but the category description stops short at the left edge of the drop down box leaving a large space on the right. I have not deployed the Header Tags contribution yet to my shop because I want to make sure I fully understand how it works and how to get the most out of it. I am still wrestling with all those checkboxes on the text control page in the admin section. But the Header Tags contribution seems to allow for much more control of the product keywords and description then the "breadcrumbs" idea (it isn't deployed as a contribution so I am not calling it that) but which was fast to implement and will serve until I get the Header Tags deployed. Incidentally, on my home computer I have the Categories Description turned off in Configuration. I didn't actually remove it. Allen
  3. This is a very nice contribution. I actually got it installed and working despite the fact that my store has quite a few other contributions installed already. I have one small problem that I can actually live with but I thought it worth asking about. When I include a category description on the displayed page, if there is more than one manufacturer, a drop down list box will appear on the right next to the Category Title. Beneath that will be the text of the category description. This text does not run the full width of the table as does the product listing below it. It runs up to the manufacturer's drop down box (which is in a different row) and wraps. I can find nowhere in the simple few lines of code in the index.php file why this should be so; the text should run beneath the manufacturer's drop down box. Anyone have any ideas why this is occurring?
  4. I tried https://certification.authorize.net/gateway/transact.dll and it also works in test mode. Appendix H of the AIM Implementation Guide devotes all of 7 lines to Certification and it reads like just another way to run test mode. A search through that Guide also failed to find any reference to test.authorize.net. BTW, this contribution works well. I like the integration of CVV help with a popup window. I have not run it in production mode yet but I don't expect problems.
  5. For those having trouble using this contribution in Test mode, change line 301 in catalog\includes\modules\payment\authorizenet_aim.php from if (MODULE_PAYMENT_AUTHORIZENET_AIM_TESTMODE == 'Test') { $url = 'https://test.authorize.net/gateway/transact.dll'; } else { $url = 'https://secure.authorize.net/gateway/transact.dll'; } to if (MODULE_PAYMENT_AUTHORIZENET_AIM_TESTMODE == 'Test') { $url = 'https://secure.authorize.net/gateway/transact.dll'; } else { $url = 'https://secure.authorize.net/gateway/transact.dll'; } I was instructed by Tom C. at customer support, Authorize.net to leave the url at secure.authorize and this works for me, while the original way with test.authorize did not (in test mode).
  6. Vger, There is another Authorize.net AIM contribution available (Authorizenet ADC Direct Connection, http://www.oscommerce.com/community/contributions,725) and I was wondering what the differences are between yours and that one.
×
×
  • Create New...