SITEMIX
Page 1 of 1

Online Shirt Ordering is... um... Online!!!

Posted: Wed Oct 12, 2005 10:32 pm
by ZiggyZoomba
http://www.ay-ziggy-zoomba.com/commerce

Easiest way I can tell you to do this (since I can't get rid of the "TABLE_HEADING_NEW_PRODUCTS" thing... grrrrr.....) is to hit "apparel" in the upper left, then click on the style you're interested in, then the size you want, and if it's available, add it to your cart and go for it!!

When you check out, you will have to register for an account. This will be different than the account for these boards, because some people don't have addresses and/or legitimate contact info in their accounts here. So please, fill out all the information. (I'm not going to abuse it in any way). PayPal is my preferred method of payment because I can ship things out right away, but if you plan to see me soon, choose COD, or if you want to send me money, choose that option.

Please let me know if you have any issues with the ordering system. Probaly best to email me @ [email protected] rather than to try to catch me here.

Buy lots!!! I can always get more printed up!! Thanks everyone!!

http://www.ay-ziggy-zoomba.com/commerce

Posted: Thu Oct 13, 2005 1:45 am
by TG1996
AWESOME!

I'll take an XXL. :wink: :lol:

Posted: Thu Oct 13, 2005 1:03 pm
by Bassdrummin
Hey Grant,

I may have a solution for you to get rid of that line: TABLE_HEADING_NEW_PRODUCTS

I have a feeling the solution may involve the file:
languages/English/index.php

where these items are defined in osCommerce. This is what the file is supposed to look like:

********************
<?php
/*
$Id: index.php,v 1.3 2003/07/08 16:56:04 dgw_ Exp $

osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com

Copyright © 2003 osCommerce

Released under the GNU General Public License
*/

define('TEXT_MAIN', 'Main text here.');
define('TABLE_HEADING_NEW_PRODUCTS', 'New Products for %s');
define('TABLE_HEADING_UPCOMING_PRODUCTS', 'Upcoming products');
define('TABLE_HEADING_DATE_EXPECTED', 'Date Expected');

if ( ($category_depth == 'products') || (isset($HTTP_GET_VARS['manufacturers_id'])) ) {
define('HEADING_TITLE', 'Welcome to Our E-Store');
define('TABLE_HEADING_IMAGE', 'Image');
define('TABLE_HEADING_MODEL', 'Model');
define('TABLE_HEADING_PRODUCTS', 'Products');
define('TABLE_HEADING_MANUFACTURER', 'Manufacturer');
define('TABLE_HEADING_QUANTITY', 'Quantity');
define('TABLE_HEADING_PRICE', 'Price');
define('TABLE_HEADING_WEIGHT', 'Weight');
define('TABLE_HEADING_BUY_NOW', 'Buy Now!');
define('TEXT_NO_PRODUCTS', 'No products in this category, but check back. If the category is here, then we plan on entering products here soon.');
define('TEXT_NO_PRODUCTS2', 'No products from the manufacturer for this category.');
define('TEXT_NUMBER_OF_PRODUCTS', 'Number of products: ');
define('TEXT_SHOW', '<b>Search:</b>');
define('TEXT_BUY', 'Buy 1 \'');
define('TEXT_NOW', '\' time');
define('TEXT_ALL_CATEGORIES', 'All');
define('TEXT_ALL_MANUFACTURERS', 'All');
} elseif ($category_depth == 'top') {
define('HEADING_TITLE', 'Welcome to My E-Store!');
} elseif ($category_depth == 'nested') {
define('HEADING_TITLE', 'Categories');
}
?>

********************

Make sure you backup the previous file first before making some changes. But I suspect this file may be missing some of the defined variables.
I.E. "define('TABLE_HEADING_NEW_PRODUCTS', 'New Products for %s');"
Let me know if this helps

later,
Jeff

Posted: Thu Oct 13, 2005 1:10 pm
by 1987alum
All right, let the Geekfests begin! :lol: :lol:

Posted: Thu Oct 13, 2005 1:11 pm
by Bassdrummin
I forgot to add...

I am currently working on a project to "chop" up osCommerce into a product where you can pick and choose what features you would like to appear on the website. For instance, if you don't care to see the "what's new" box, you would have the option to remove it from the website completely. If you would like, I could send you a copy of this after I am finished.
Later,
Jeff

Posted: Thu Oct 13, 2005 1:58 pm
by hammb
1987alum wrote:All right, let the Geekfests begin! :lol: :lol:
Dammit...I feel like a geek for understanding that...back to porn & liquor!

Posted: Thu Oct 13, 2005 3:28 pm
by ZiggyZoomba
Bassdrummin wrote:I forgot to add...

I am currently working on a project to "chop" up osCommerce into a product where you can pick and choose what features you would like to appear on the website. For instance, if you don't care to see the "what's new" box, you would have the option to remove it from the website completely. If you would like, I could send you a copy of this after I am finished.
Later,
Jeff
Thanks for the feedback. I was grepping left and right last night trying to find the right instance of it and finally just gave up b/c I wanted to get the thing online.

A "modular" osCommerce sounds like an awesome idea! I appreciate the help. W/O the time to spend poking around as much as I'd like, I probably would have just given up on it. Now I've got something to mess w/ tonight!!

Thanks again! Now, buy a shirt!! ;-)

PayPal

Posted: Thu Oct 13, 2005 3:42 pm
by ZiggyZoomba
If you're paying via PayPal, PLEASE go all the way through the ordering process. I'm not sure why, but I've gotten the $$ confirmed from PayPal for a couple of orders and yet no order shows up in the store. You have to finish things up at PayPal and then return to the merchant in order to complete the process!

Let me know if there are any questions.

Posted: Fri Oct 14, 2005 1:36 pm
by JohnnySwoop '85
Why when I was an undergrad we could only program code in 1's and 0's...

That's nothing, when I used to pull all nighters in the Computer lab at Math- Science...we didn't have any 1's. In fact we didn't have any 0's...we had to use the letter O.

Posted: Thu Oct 20, 2005 9:38 pm
by TennesseeFalcon
Great shirts and very speedy delivery. Thanks. :D

Posted: Fri Oct 21, 2005 8:01 am
by golfertk14
I'm gonna buy one once I get to BG Grant!

Posted: Fri Oct 21, 2005 11:08 pm
by FliccGirl
LOOOOVE the shirts!!! :D :D :D (Picked mine up from the front desk just now, in case you couldn't tell. :wink: )

Posted: Fri Oct 21, 2005 11:29 pm
by Godsgirlerific
Bassdrummin wrote:Hey Grant,

I may have a solution for you to get rid of that line: TABLE_HEADING_NEW_PRODUCTS

I have a feeling the solution may involve the file:
languages/English/index.php

where these items are defined in osCommerce. This is what the file is supposed to look like:

********************
<?php
/*
$Id: index.php,v 1.3 2003/07/08 16:56:04 dgw_ Exp $

osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com

Copyright © 2003 osCommerce

Released under the GNU General Public License
*/

define('TEXT_MAIN', 'Main text here.');
define('TABLE_HEADING_NEW_PRODUCTS', 'New Products for %s');
define('TABLE_HEADING_UPCOMING_PRODUCTS', 'Upcoming products');
define('TABLE_HEADING_DATE_EXPECTED', 'Date Expected');

if ( ($category_depth == 'products') || (isset($HTTP_GET_VARS['manufacturers_id'])) ) {
define('HEADING_TITLE', 'Welcome to Our E-Store');
define('TABLE_HEADING_IMAGE', 'Image');
define('TABLE_HEADING_MODEL', 'Model');
define('TABLE_HEADING_PRODUCTS', 'Products');
define('TABLE_HEADING_MANUFACTURER', 'Manufacturer');
define('TABLE_HEADING_QUANTITY', 'Quantity');
define('TABLE_HEADING_PRICE', 'Price');
define('TABLE_HEADING_WEIGHT', 'Weight');
define('TABLE_HEADING_BUY_NOW', 'Buy Now!');
define('TEXT_NO_PRODUCTS', 'No products in this category, but check back. If the category is here, then we plan on entering products here soon.');
define('TEXT_NO_PRODUCTS2', 'No products from the manufacturer for this category.');
define('TEXT_NUMBER_OF_PRODUCTS', 'Number of products: ');
define('TEXT_SHOW', '<b>Search:</b>');
define('TEXT_BUY', 'Buy 1 \'');
define('TEXT_NOW', '\' time');
define('TEXT_ALL_CATEGORIES', 'All');
define('TEXT_ALL_MANUFACTURERS', 'All');
} elseif ($category_depth == 'top') {
define('HEADING_TITLE', 'Welcome to My E-Store!');
} elseif ($category_depth == 'nested') {
define('HEADING_TITLE', 'Categories');
}
?>

********************

Make sure you backup the previous file first before making some changes. But I suspect this file may be missing some of the defined variables.
I.E. "define('TABLE_HEADING_NEW_PRODUCTS', 'New Products for %s');"
Let me know if this helps

later,
Jeff
That's my big brother... :mrgreen:

Posted: Sun Oct 23, 2005 12:47 pm
by billchase2
sweet, just placed my order. :D

Posted: Sat Oct 29, 2005 9:57 pm
by billchase2
got my shirt! very sweet! thanks grant!