Search found 19 matches

by 500lbdev
Mon Mar 02, 2009 7:01 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: NavigationHelper
Replies: 2
Views: 3292

Re: NavigationHelper

Any word on this? I've upgraded from 7.01 to 7.02 and getting redirected to the ShipAddress page. How do I tell the store that one page checkout is being used?

Thanks!
by 500lbdev
Tue Feb 24, 2009 7:16 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Order Status: Payment Pending or Shipment Pending
Replies: 0
Views: 3216

Order Status: Payment Pending or Shipment Pending

We just launched a new AbleCommerce site and have noticed something very strange. When an order occurs the Order Status gets set to Shipment Pending from Payment Pending only sometimes. We're using the Payflow Pro Payment Gateway and have the transaction mode set to "Authorize and Capture." I have n...
by 500lbdev
Fri Feb 13, 2009 6:51 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Search orders by BillToEmail
Replies: 2
Views: 3723

Search orders by BillToEmail

Hi there, I'm trying to implement the capability on the Order Manager to search (filter) by BillToEmail. I've been able to easily add the ability to search by BillToFirstName and BillToLastName by adding these items to the KeywordSearchField: <asp:DropDownList ID="KeywordSearchField" runat="server">...
by 500lbdev
Wed Jan 28, 2009 5:23 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: HandleFailedPayments for anonymous users
Replies: 7
Views: 4933

Re: HandleFailedPayments for anonymous users

ASP.NET programming 101. Thanks Judy. I looked in the root web.config folder for the authorization node and forgot to look in the sub directory. I can be forgetful. I appreciate the help.
by 500lbdev
Wed Jan 28, 2009 3:03 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Warehouse Management System
Replies: 2
Views: 3942

Re: Warehouse Management System

This helps a lot. I'll take a look at StoneEdge. Thanks for the reply!
by 500lbdev
Wed Jan 28, 2009 2:02 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: HandleFailedPayments for anonymous users
Replies: 7
Views: 4933

Re: HandleFailedPayments for anonymous users

Thanks for the quick reply. I implemented your suggestion and it worked great. If the authorization fails, I'm storing a guid in the custom field and adding that to the email template manually. This guid is then merged with the link in the Authorization Failed email template pointing back to the Pay...
by 500lbdev
Wed Jan 28, 2009 12:21 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Warehouse Management System
Replies: 2
Views: 3942

Warehouse Management System

Has anybody had experience with integrating AbleCommerce to existing warehouse management system (WMS) software? Inventory management within Able is pretty bare bones. We're looking to integrate a more robust solution than what is offered out of the box.

Thanks!
by 500lbdev
Wed Jan 28, 2009 12:18 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: HandleFailedPayments for anonymous users
Replies: 7
Views: 4933

Re: HandleFailedPayments for anonymous users

Thanks for the response! I did notice in the code that the PayMyOrderPage control checks to see if the current instance of the userid matches the userid on the order. Is there any canned functionality that would allow us to easily add a link to the PayMyOrder page in the Failed Authorization notific...
by 500lbdev
Mon Jan 26, 2009 4:44 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: HandleFailedPayments for anonymous users
Replies: 7
Views: 4933

HandleFailedPayments for anonymous users

Hi there, Is there a way to handle failed payments for anonymous users? I've set the HandleFailedPayments property to true on the receipt page. However, since the PayMyOrder.aspx page exists in the Members section, the user gets redirected to a login page which is a problem since the user is anonymo...
by 500lbdev
Thu Mar 27, 2008 12:07 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Credit Card Validation
Replies: 56
Views: 71624

Logan, thanks for responding to the issue so quickly. I think that all of these suggestions may be sort of a band-aid to the problem Ultimately, allowing for validation before the customer is redirected to the receipt page, sent a confirmation email and has his/her order entered into the system seem...
by 500lbdev
Thu Mar 27, 2008 8:04 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Credit Card Validation
Replies: 56
Views: 71624

Logan, thanks for your reply. Your decision to not validate credit cards seems to be against stardard protocol. Knowing this, the agency that I work for is less likely to purchase AC for future eCommerce implementations. Credit card validation before order entry is a very important piece of an ecomm...
by 500lbdev
Tue Mar 25, 2008 1:33 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Credit Card Validation
Replies: 56
Views: 71624

Credit Card Validation

Is there any way using AbleCommerce to validate the credit card before an order is inserted into the system? As an ecommerce shopper, I would not expect to see a receipt until I've entered a valid credit card number. I would expect to get an error message and stay on the payment page if I entered an...
by 500lbdev
Thu Feb 14, 2008 11:09 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Multiple Wishlists?
Replies: 2
Views: 3387

The Programming API and database schema are both set up to support multiple wishlists per user. However, I don't think that the out-of-the-box ConLib controls support this. The MyWishList page displays the authenticated user's primary wishlist: Wishlist list = Token.Instance.User.PrimaryWishlist Her...
by 500lbdev
Tue Feb 05, 2008 6:26 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Looking to hire someone
Replies: 1
Views: 2975

Hi there. I work with 500lb Marketing Solutions (http://www.500lb.com), and we have experience with both AbleCommerce and companies like yours in the biking and athletic arenas (http://www.racenation.com, http://www.ride-this.com), and would be very interested to speak with you. Please give John Ske...
by 500lbdev
Fri Feb 01, 2008 4:04 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Order Details
Replies: 5
Views: 5208

You can explicity set this in code

I noticed this issue also. You can explicitly set this in the code with the following snippet:

Code: Select all

User user = Token.Instance.User;
if (string.IsNullOrEmpty(user.PrimaryAddress.Email))
{
    user.PrimaryAddress.Email = user.Email;
    user.Save();
}
You can add this in the CheckingOut event handler.
by 500lbdev
Wed Jan 30, 2008 9:43 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Consuming Events
Replies: 5
Views: 5079

OrderStatusChanged Event

Yes! Wouldn't it be nice to have a global OrderStatusChanged event that could be consumed from any location within the project that passes the status as a property on the EventArgs. AbleCommerce -- (Hint...Hint). Here's a little code snippet that if added to the Order class could provide this functi...
by 500lbdev
Mon Jan 28, 2008 4:02 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Consuming Events
Replies: 5
Views: 5079

Consuming Events

Using the provided AbleCommerce API, is there a way to subscribe to certain events like Order Placed, Order Paid, etc. and add extra logic when these specific events are fired?

Thanks!
by 500lbdev
Thu Jan 24, 2008 1:50 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Gift Wrap Questions
Replies: 2
Views: 3136

Gift wrap entire order?

Can AbleCommerce be configured to allow the entire order to be gift wrapped rather than individual products?

Thanks,
Brandon
by 500lbdev
Tue Jan 08, 2008 3:37 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Content Management in AC7
Replies: 2
Views: 3497

Subpages

I've noticed that the AC 7 category management system only allows for category items to have sub items like pages and links. Is there a way around this to allow for items like pages to have subitems? I'd like to be able to set up pages to have subpages.

Thanks!