Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

eberswine

Pioneers
  • Posts

    43
  • Joined

  • Last visited

Everything posted by eberswine

  1. Is there a way to add a Discount when someone uses Dwolla as a payment?? I think that would be a great incintive for users to start this trend!! Please help. Thanks!!
  2. Ok, i see, you need to be registered as a Dwolla customer and have them verify your bank information... Is there anyone who made Dwolla and PayPal as there only payment?? I think there still needs to be some what of a seamless way for our customers to pay.. without jumping through too many hoops?? Has anyone come up with a good way to have customers register with Dwolla and then lead them back to our Shopping Cart ?? ...
  3. Does this work the same way as any other Payment Merchant? Like "Authorize.net" ?? What is different? Looks interesting!
  4. Got it.. I just read it in the manual. .. sorry. Here is a new question though: I want to pass a simple GET or POST variable to a product page to attach to an attribute for a certain product.. .. It is a small variable... like : /product_info.php?products_id=50?eventName=This+is+the+event+name&date=2011-10-25 Now, how do I go about adding this variable to a blank product page that has a value for price. I some how need to pass these two variables all the way through to the checkout process, so we know what event is being purchased... ?? Thanks so much.
  5. Hey Guys!!! Great Group!! Had a quick question on hiding a category from $categorybox$ There is a Category I don't want to show... just for testing purposes.. ? Wondering if there is any "arguments" that go along with this tag / function? Thanks!!
  6. Is there anyway to generate a series of coupons? Wanting to give away 350 subscriptions as a promo at an event. Don't want people to be able to use the coupon and pass it along to a friend. I'd like to make a coupon code numbered series like CoupOfWM1, CoupOfWM2.....CoupOfWM350. Anyway to do that without making them one by one? Thanks!!
  7. Is there anyway to generate a series of coupons? Wanting to give away 350 subscriptions as a promo at an event. Don't want people to be able to use the coupon and pass it along to a friend. I'd like to make a coupon code numbered series like CoupOfWM1, CoupOfWM2.....CoupOfWM350. Anyway to do that without making them one by one? Thanks!!
  8. Yes, makes since.. Thanks for your help!! I will be doing testing for the next couple days. I really appreciate your awesome plug-in!! Great stuff!!
  9. Ok, I think I understand how it is working now. I will test and then get back with you!! THanks so much! I have another quick question for you?? If we have USA as our default Country... And we want to ship to other countries , how do we let both us and the customer, if they choose another country, like Canada for example, to let them know we are charging extra for shipping when "Canada" pops up? Maybe like a if { COUNTRY = "Canada" { echo "Warning, extra charge" } .. ?? Thanks so much in advance!!
  10. dang, still can't find that file ???
  11. hmmmm.. thanks for the try.. i did a global search and only came up with tep_get_zone_name in customers.php and address_book.php and general.php.. ? dang. thanks for your time, i will keep searching!
  12. oh, wow, Thanks for the reply, I wouldn't have looked there!! SO here are the two functions in /includes/functions/general.php: So, just change the zone_name (from the first function below) to zone_code , right? // Returns the zone (State/Province) name // TABLES: zones function tep_get_zone_name($country_id, $zone_id, $default_zone) { $zone_query = tep_db_query("select zone_name from " . TABLE_ZONES . " where zone_country_id = '" . (int)$country_id . "' and zone_id = '" . (int)$zone_id . "'"); if (tep_db_num_rows($zone_query)) { $zone = tep_db_fetch_array($zone_query); return $zone['zone_name']; } else { return $default_zone; } } //// // Returns the zone (State/Province) code // TABLES: zones function tep_get_zone_code($country_id, $zone_id, $default_zone) { $zone_query = tep_db_query("select zone_code from " . TABLE_ZONES . " where zone_country_id = '" . (int)$country_id . "' and zone_id = '" . (int)$zone_id . "'"); if (tep_db_num_rows($zone_query)) { $zone = tep_db_fetch_array($zone_query); return $zone['zone_code']; } else { return $default_zone; } }
  13. Hey Stevel, thanks for the reply! Another quick question: How do I change values from the State like "Colorado" to just the abbreviation "CO" .. and so on...?? Do I need to edit each of these in the database to reflect change?
  14. Which one to Download for new Country-State Selector installation? There are so many files. I am confused on if I need to download the full package and then update ALL the small bugs / fixes ?? or what? Thanks so much!! http://imageshack.us/photo/my-images/863/screenshot20110519at406.png
  15. Is there a way we can separate the first name and last name for the CSV file? I noticed that it uses the $row_orders["customers_name"] I wonder if we can change that to $row_customers["customers_firstname"] . $row_customers["customers_lastname"] We print this off for the USPS and they need all rows seperated. Right now we just get : First_Name | Last_Name | Name_On_Card John Doe | | John Doe Thanks for the help!!
  16. Hi, I am just selling on line goods to the USA. I just need USA and the States to come up as a dropdown menu. I also would love to change the value of the states as the state abbreviation instead of the state name, so "CO" instead of "Colorado" -- but still would like to have Colorado as the 'name' of the drop down when people see it.. I am wondering if this is the correct add on, or is this too involved for such a simple task? Thanks in advance!
×
×
  • Create New...