Search found 8 matches
- Wed Jul 25, 2012 12:51 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Javascript error in /Admin/People/Users/EditUser.aspx
- Replies: 2
- Views: 4588
Re: Javascript error in /Admin/People/Users/EditUser.aspx
Yes, it has been resolved. I found something that was set wrong in our web.config file. This site had been upgraded from an earlier version, and the version of .NET had been moved from 2.0 to 4.0, and a setting related to that had been missed during the upgrade.
- Thu Jun 21, 2012 5:21 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Javascript error in /Admin/People/Users/EditUser.aspx
- Replies: 2
- Views: 4588
Javascript error in /Admin/People/Users/EditUser.aspx
I'm using AbleCommerce 7.0.7 and every time I open the EditUser page in the admin and try to click on the Address tab, I get the following javascript error:
MainContent_EditUserPages is not defined
Anyone else seen this issue?
MainContent_EditUserPages is not defined
Anyone else seen this issue?
- Sat May 26, 2012 3:21 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: ShipRateQuoteDataSource.QuoteForShipment() returns nothing
- Replies: 0
- Views: 2713
ShipRateQuoteDataSource.QuoteForShipment() returns nothing
I'm trying to test shipping methods in my site, and I'm not getting anything back from USPS. I've set up several shipping methods - 2 custom methods, and 4 from USPS - Priority Mail, Express Mail, Priority Mail International, and Express Mail International This is my code snippet. ICollection<ShipRa...
- Fri Mar 30, 2012 5:45 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Low Inventory Notification and Variants
- Replies: 4
- Views: 4024
Re: Low Inventory Notification and Variants
I have an email template and I've made the changes below, but I also need the VariantName from the variant.
However, when I choose that field the value is blank.
Any idea why that would be and how to fix it?
However, when I choose that field the value is blank.
Any idea why that would be and how to fix it?
- Wed Apr 20, 2011 9:06 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Turning off order shipment email
- Replies: 6
- Views: 4826
Re: Turning off order shipment email
In my code sample above, I mentioned I'm looking for the OrderShipment.Address.Email. When I place an order as a new, unregistered user, there's a value in that field. When I place an order as an existing, registered user, there isn't, and I'm not sure why. I'm expecting a value to be in that field ...
- Tue Apr 19, 2011 12:24 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Turning off order shipment email
- Replies: 6
- Views: 4826
Re: Turning off order shipment email
That definitely fixed the immediate problem, kind of, but here's the weird part: If I go through the process in order manager as a new user, that initial email field is populated. If I initially choose an existing user to create that order, that initial email field is not populated and I have to rol...
- Tue Apr 19, 2011 11:08 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Turning off order shipment email
- Replies: 6
- Views: 4826
Re: Turning off order shipment email
That stopped the automatic email from sending, but when I explicitly call the email send it doesn't send anymore. Here's the code snippet. When the condition is true, I don't get the email: if (SendNotificationCheckbox.Checked) { EmailTemplateCollection emailTemplates = null; if (!isPartial) { email...
- Mon Apr 18, 2011 11:50 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Turning off order shipment email
- Replies: 6
- Views: 4826
Turning off order shipment email
I'm trying to enter and order shipment without sending off email notification. I added a checkbox to let a user choose whether to send notification and I'm able to skip over the part where I manually build an email, but I find later on, a call to OrderDataSource.Load send a shipment notification ema...