Search found 8 matches
- Mon May 09, 2011 8:10 am
- Forum: Feature Requests
- Topic: Adding ShipByDate, or EstimatedShipDate to shipments
- Replies: 2
- Views: 4495
Re: Adding ShipByDate, or EstimatedShipDate to shipments
Perhaps a more flexible way would be to create something like CustomFields collection for shipments. Any number of fields and data could be added to the shipments then. Both BasketShipment and OrderShipment classes would need to be updated to transfer the data from the basket to the order, but the a...
- Mon May 02, 2011 3:13 pm
- Forum: Feature Requests
- Topic: Creating a Product Bundle type of a product
- Replies: 0
- Views: 3432
Creating a Product Bundle type of a product
It would be nice to have a Kit Bundle product type that would allow adding kits as items with a requirement that a specific number of items had to be purchased. For example, you have a kit that consists of Parent Kit Product Option 1 (Item1 | Item2 ... | ItemX) Option 2 (Item1 | Item2 ... | ItemX) ....
- Mon May 02, 2011 2:47 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Child Kit Items
- Replies: 2
- Views: 3456
Re: Child Kit Items
The logical guess it would be because it would be possible to link products recursively and the code would have to have a way to detect that and deal with it, or risk creating indefinite loop. Perhaps some kind of a KitProductItemLevel property could be used so the parent would always get an item le...
- Wed Apr 20, 2011 8:03 am
- Forum: Feature Requests
- Topic: Adding ShipByDate, or EstimatedShipDate to shipments
- Replies: 2
- Views: 4495
Adding ShipByDate, or EstimatedShipDate to shipments
In our particular store implementation, new orders may contain from 1 to 4 shipments which need to be shipped weekly rather than all at once. We auto split orders into multiple shipments and use ShipMessage field to store a date when a particular shipment needs to be shipped. Also, those orders can ...
- Wed Oct 20, 2010 8:00 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Custom email templates
- Replies: 8
- Views: 8215
Re: Custom email templates
Try $User.PrimaryAddress.FirstName and $User.PrimaryAddress.LastName.
- Tue Oct 19, 2010 4:25 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Hide View Cart Button
- Replies: 3
- Views: 3499
Re: Hide View Cart Button
Locate this line of code
and replace it with
Good luck!
Code: Select all
<a href="~/Basket.aspx" class="button">View Cart</a>
Code: Select all
#if ($page.Request.Path.ToLower().IndexOf("basket.aspx") < 0)
<a href="~/Basket.aspx" class="button">View Cart</a>
#end
- Wed Oct 13, 2010 8:46 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Kit Products checkout bug with large number of options, 28+
- Replies: 3
- Views: 2944
Re: Kit Products checkout bug with large number of options, 28+
Update: it happens on any number of kit options, as long as they have duplicate products across different options selected. As a temporary fix, adding this code to Page_Init() on PaymentPage.aspx.cs seems to update the table in the database and mark kit items properly as shippable by setting their B...
- Tue Oct 12, 2010 8:09 am
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Kit Products checkout bug with large number of options, 28+
- Replies: 3
- Views: 2944
Kit Products checkout bug with large number of options, 28+
I have not tested it yet with smaller number of options, but that's how I discovered it initially, on Kit Products that have 28, 56, 84 and 112 options. As you go through the checkout process, initially the BasketItems table holds the following records for that specific BasketId (X, Y, Z are Quantit...