Search found 482 matches

by Mike718NY
Mon Jan 25, 2010 11:08 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Category Icon not lining up with Category name in Admin
Replies: 2
Views: 1762

Re: Category Icon not lining up with Category name in Admin

thanks . . I did this too and it worked: // REPLACE "absmiddle" with "top" : if (string.IsNullOrEmpty(theme)) theme = "AbleCommerceAdmin"; string minusIcon = "<img src=\"" + this.Page.ResolveClientUrl("~/App_Themes/" + theme + "/Images/minus.gif") + "\" border=\"0\" align=\"top\" />"; string plusIco...
by Mike718NY
Sat Jan 23, 2010 11:30 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Category Icon not lining up with Category name in Admin
Replies: 2
Views: 1762

Category Icon not lining up with Category name in Admin

In IE 8, the icon no longer line-up with the Category names
in the Category Admin(see pic).
How can this be fixed?
by Mike718NY
Fri Jan 22, 2010 1:36 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Can't Move Categories on Pages 2, 3, 4, etc . . Bug
Replies: 2
Views: 2896

Can't Move Categories on Pages 2, 3, 4, etc . . Bug

I have more than one page of Categories. When I try to move a category, I can't and get an error (see pics). Can this be fixed? I have 400 categories that need to be moved. Here is the "error on page" message: User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.0.3...
by Mike718NY
Wed Jan 20, 2010 3:38 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Visibility : hidden or private?
Replies: 1
Views: 1485

Visibility : hidden or private?

I have to make some "Out of Stock" products not show in the store.
Should I use hidden or private? thanks
by Mike718NY
Wed Jan 20, 2010 11:07 am
Forum: 7.0 DataPort
Topic: DataPort problem with Departments and Categories
Replies: 2
Views: 3541

Re: DataPort problem with Departments and Categories

Can this be done? thanks
by Mike718NY
Wed Jan 13, 2010 5:06 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: How do I use nVelocity for arrays or collections
Replies: 1
Views: 1842

How do I use nVelocity for arrays or collections

How do I use nVelocity for arrays or collections? I tried using this in Scriptlets\Custom\Content\Show Product 1.htm: #if($Product.CustomFields[0].FieldName == "Engraving") but got an error. It complains about the [ ], so I changed then to ( ) : #if($Product.CustomFields(0).FieldName == "Engraving")...
by Mike718NY
Mon Jan 11, 2010 10:21 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: You took the ProductTemplateId out of the Products table !!!
Replies: 2
Views: 1837

Re: You took the ProductTemplateId out of the Products table !!!

thanks Judy, you saved the day again. This works also (I used it in CategoryGridPage2.ascx.cs): if (product.ProductProductTemplates[0].ProductTemplateId == 5) ... but it only works if all the products for that Category have a Template defined for those products, otherwise it gives the error: Index w...
by Mike718NY
Sun Jan 10, 2010 1:01 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: You took the ProductTemplateId out of the Products table !!!
Replies: 2
Views: 1837

You took the ProductTemplateId out of the Products table !!!

I was hit with a shock when I (and my code) discovered the ProductTemplateId was removed from the Products table !!! In the ProductHelper.cs file I had: if (product.ProductTemplateId == 5) .......... But now I don't know how to access the ProductTemplateId of 5? Can it be accessed through another fi...
by Mike718NY
Thu Dec 03, 2009 1:51 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Checkout Problem
Replies: 3
Views: 2100

Re: Checkout Problem

Don't know if this is the case, but if a field validator has a message, because a text field is empty or whatever, the page won't post until the validator message goes away. Example, if you don't provide a password, this message will be displayed and Submit Order button won't fire: •You must provide...
by Mike718NY
Thu Nov 19, 2009 1:13 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Can't Add to Cart in IE 8 and FireFox
Replies: 3
Views: 7465

Re: Can't Add to Cart in IE 8 and FireFox

It appears to be just one line: Basket basket = Token.Instance.User.Basket; basket.Items.Add(basketItem); // this one: basket.Save(); // was : basketItem.Save(); They should have put this note in the fixes section for people who have modified this file. No need to check every line when it's just one.
by Mike718NY
Thu Nov 19, 2009 12:26 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Can't Add to Cart in IE 8 and FireFox
Replies: 3
Views: 7465

Re: Can't Add to Cart in IE 8 and FireFox

thanks Judy,

I have made a lot of changes to BuyProductDialog.ascx.cs and not looking
for foward to comparing every line :roll:
Do you know off hand if it's just a few lines I need to change?
by Mike718NY
Thu Nov 19, 2009 11:59 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: What is the Exported bit field in the Orders table?
Replies: 9
Views: 4555

Re: What is the Exported bit field in the Orders table?

I wish there were a few more of these "un-used" fields.
It would make customizations a lot easier.
Should add a few more in Products, Orders, and OrderItems.
I guess they are not needed in Products because of custom fields,
but definately in Orders and OrderItems.
by Mike718NY
Thu Nov 19, 2009 11:51 am
Forum: Feature Requests
Topic: View Orders Area
Replies: 6
Views: 7034

Re: View Orders Area

Jaz wrote:Add a next and previous button in the view orders area. This will alow quicker viewing of orders.
David, I added this and it's working for me.

See: viewtopic.php?f=42&t=12694&p=55053#p55053
by Mike718NY
Thu Nov 19, 2009 11:49 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Adding A Next and Previous link for Orders
Replies: 4
Views: 14085

Re: Adding A Next and Previous link for Orders

I updated this and it works better (but still doesn't check for "out of range"): ........................ case "Default.aspx": if (!(e.Item.SiteMapNode.Url.EndsWith("Shipments/Default.aspx") || e.Item.SiteMapNode.Url.EndsWith("Payments/Default.aspx"))) { // BREAK AND DONT FALL IN NEXT CASE break; } ...
by Mike718NY
Wed Nov 18, 2009 12:15 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Can't Add to Cart in IE 8 and FireFox
Replies: 3
Views: 7465

Can't Add to Cart in IE 8 and FireFox

Strange problem. I just upgraded to Internet Explorer 8 (from 6) and get this error ("error on page" on the status bar) when clicking "Add To Cart": User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.0.3705; .NET CLR 1.1.4322; .NET CLR 3.0.4506.2152; .NET CLR 3.5....
by Mike718NY
Thu Nov 12, 2009 2:27 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: What is the Validator in SimpleSearch.ascx?
Replies: 3
Views: 1972

Re: What is the Validator in SimpleSearch.ascx?

There was 1 in there (the Minimum Search Length).
I set it to 2 and it displayed the message.

But you can still enter nothing and it returns all products ???

I don't know if this is useful or not. I'll probably just take it out.
by Mike718NY
Thu Nov 12, 2009 12:11 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: What is the Validator in SimpleSearch.ascx?
Replies: 3
Views: 1972

What is the Validator in SimpleSearch.ascx?

In the SimpleSearch.ascx, there is a validator " keyword must be at least {0} characters in length . . .", but is it being used? If I type 2 or less characters I don't see that message: <asp:TextBox ID="SearchPhrase" runat="server" CssClass="searchPhrase" Columns="30" MaxLength="60"></asp:TextBox> <...
by Mike718NY
Thu Nov 12, 2009 10:07 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: How to tell a friend without Sidebar?
Replies: 4
Views: 2495

Re: How to tell a friend without Sidebar?

I can't get this to work. Only the "Close" button displays: <asp:Button ID="CancelAddButton" runat="server" Text="Close" CausesValidation="false" /> I guess this is not showing: <uc1:SubscribeToEmailList ID="SubscribeToEmailList1" runat="server" /> Do you mean [[ConLib:SendEmailPopup instead of : [[...
by Mike718NY
Tue Nov 10, 2009 10:56 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Adding a field to Orders table and Source Code
Replies: 19
Views: 9459

Re: Adding a field to Orders table and Source Code

Hey Joe . . .
We need you to make a tutorial on how to do this (because I have no clue) like you did on
"How to add a Product Custom Field", which really helped me a lot. You are the master.
by Mike718NY
Tue Nov 10, 2009 10:53 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: What is the Exported bit field in the Orders table?
Replies: 9
Views: 4555

Re: What is the Exported bit field in the Orders table?

Thanks Nick.
Do you think this is related to the Data Port? Where else would an order be "exported" to?
by Mike718NY
Tue Nov 10, 2009 10:48 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: How are Custom Fields added to OrderItems in ViewOrder.aspx?
Replies: 9
Views: 14986

Re: How are Custom Fields added to OrderItems in ViewOrder.aspx?

>> Obviously first you need to load order then iterate over its order items and finally . .

I hope it's more obvious that I don't know how to do this.
by Mike718NY
Tue Nov 10, 2009 9:40 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: How are Custom Fields added to OrderItems in ViewOrder.aspx?
Replies: 9
Views: 14986

Re: How are Custom Fields added to OrderItems in ViewOrder.aspx?

I added that and got:
"The name 'orderItem' does not exist in the current context"
by Mike718NY
Tue Nov 10, 2009 7:55 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: How are Custom Fields added to OrderItems in ViewOrder.aspx?
Replies: 9
Views: 14986

Re: How are Custom Fields added to OrderItems in ViewOrder.aspx?

I was able add a Product Custom Field using Joe's tutorial, but I have no
idea how to add an Order item custom field. Does anybody know?
by Mike718NY
Tue Nov 10, 2009 7:48 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: What is the Exported bit field in the Orders table?
Replies: 9
Views: 4555

Re: What is the Exported bit field in the Orders table?

I can't find any documentation on this. Anyone know what it is?