Search found 276 matches

by nickc
Wed Mar 11, 2009 2:58 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: warehouse alert email
Replies: 4
Views: 2579

Re: warehouse alert email

Hmm. Might have misread your intent. You could inject some code into the "CheckedOut" method of OnePageCheckout.ascx.cs. You'd load the order, iterate each shipment (where you can read the warehouse email) and send mail. Able's email templating is available in CommerceBuilder.Messaging: EmailTemplat...
by nickc
Wed Mar 11, 2009 2:40 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: warehouse alert email
Replies: 4
Views: 2579

Re: warehouse alert email

If the warehouse id is arbitrary or external, you can get hold of the email this way:

Code: Select all

#set ($foo = YourWarehouseIdValue + 0 )
$store.Warehouses.get_item($store.Warehouses.IndexOf($foo)).Email
If you have a shipment object available, use:

Code: Select all

$shipment.Warehouse.Email
by nickc
Wed Mar 11, 2009 1:21 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Add new selections to Admin Toolbar
Replies: 1
Views: 1444

Re: Add new selections to Admin Toolbar

/Admin/menu.sitemap; layout is pretty self explanatory.

You can also read a more detailed/just posted overview of Admin, roles and the sitemap file here: viewtopic.php?f=47&t=10045, thanks to the prolific and ever-helpful Joe Payne of AbleMods.com.
by nickc
Mon Mar 09, 2009 1:49 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: SimpleCategoryList - category as apramater and display links
Replies: 8
Views: 16043

Re: SimpleCategoryList - category as apramater and display links

Hmm. I'm using an older (Fall 2008) version of Able, and my SimpleCategoryList control already does both of those things.
by nickc
Fri Mar 06, 2009 4:01 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Strange javascript popup dialogs in checkout
Replies: 8
Views: 4027

Re: Strange javascript popup dialogs in checkout

There have never been javascript popups in the checkout page to my knowledge. If you didn't code them, might be wise to disconnect payment operations in your site while you research. There was at least one site reported compromised by hackers here earlier this week: http://forums.ablecommerce.com/vi...
by nickc
Wed Mar 04, 2009 11:46 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Parse Error - URGENT - Please help
Replies: 22
Views: 10564

Re: Parse Error - URGENT - Please help

I'd agree, given that the javascript call is to "lndex.net" and resolves to an IP in Beijing...
by nickc
Wed Mar 04, 2009 8:15 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Small modification, breaking a comma'd list into rows
Replies: 8
Views: 6276

Re: Small modification, breaking a comma'd list into rows

Hmm. The closing quote (") for href isn't escaped.
Change

Code: Select all

output.Append("<a href=\"" + Page.ResolveUrl(category.NavigateUrl) + "\" >" + category.Name + "</a><BR> "); 
to

Code: Select all

output.Append("<a href=\"" + Page.ResolveUrl(category.NavigateUrl) + \"" >" + category.Name + "</a><br/> "); 
by nickc
Wed Mar 04, 2009 7:48 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: uh, does ablecommerce work with ff3 or ie8?
Replies: 7
Views: 3722

Re: uh, does ablecommerce work with ff3 or ie8?

I have the same issue with FF3, had it with FF2 and on occasion with IE7. I've completely abandoned trying to run admin with FF. If I disable plugins (Dev Toolbar, Fiddler) in IE7 I have reasonable success, although sometimes have to refresh the page several times. Every button that uses javascript:...
by nickc
Tue Mar 03, 2009 4:09 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Popup pages
Replies: 5
Views: 2664

Re: Popup pages

That's in the default master page - /Layouts/Scriptlet.master - did you alter that?
by nickc
Tue Mar 03, 2009 2:10 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Popup pages
Replies: 5
Views: 2664

Re: Popup pages

Could be that Webpage.aspx has been "personalized". If you browse to the page while logged in Admin, what does the admin panel show (bottom of page) for theme? Theme is bound in inline code for object "Webpage". You can override that in code if you prefer: change PageHelper.BindCmsTheme(this, _Webpa...
by nickc
Mon Mar 02, 2009 1:52 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Redirect to a custom page on successful order
Replies: 2
Views: 1918

Re: Redirect to a custom page on successful order

App_Code\NavigationHelper.cs is an easy way to intervene:

Code: Select all

    public static string GetReceiptUrl(int orderId)
    {
        // return string.Format("~/Checkout/Receipt.aspx?OrderId={0}", orderId);
        return "MyCustomPage.aspx";
    }
by nickc
Thu Feb 26, 2009 2:06 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Something Cool with AbleCommerce
Replies: 15
Views: 6168

Re: Something Cool with AbleCommerce

Alas, my user agent is too long to view this page: viewtopic.php?f=47&t=9684
Nice work.
Oh yeah - I *really* want to click on the icons across the bottom of the form :)
by nickc
Mon Feb 23, 2009 11:30 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Limiting Search Results
Replies: 8
Views: 3552

Re: Limiting Search Results

public int CategoryId { get { if (ViewState["CategoryId"] == null) ViewState["CategoryId"] = PageHelper.GetCategoryId(); return (int)ViewState["CategoryId"]; } Instead of initializing to PageHelper.GetCategoryId(), which probably returns 0 on the first page view (and therefore everything in the cat...
by nickc
Sat Feb 21, 2009 11:54 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Limiting Search Results
Replies: 8
Views: 3552

Re: Limiting Search Results

Check out the Products.ProductDataSource class in the API docs. Both AdvanchedSearch() and NarrowSearch() methods accept a CategoryId argument.
by nickc
Fri Feb 20, 2009 4:48 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: how to open a new window on button click
Replies: 11
Views: 6883

Re: how to open a new window on button click

Looks like Mazhar's "Contact Us" control (http://forums.ablecommerce.com/viewtopic.php?f=47&t=7954) would be better suited to what you are trying to implement. Could be as easy as adding the button as an anchor tag, and modding the control to accept querystring assignments of subject, etc: <a href="...
by nickc
Thu Feb 19, 2009 10:14 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Combination Coupons
Replies: 4
Views: 2927

Re: Combination Coupons

Best not to revise Basket.ascx.cs after all. Corner case exists where if 2 coupons are added to the basket on checkout and one of those coupons is only affecting shipping cost, and the basket page is recalled ("Edit Order"), the modification triggers a basket validation problem and a coupon must be ...
by nickc
Wed Feb 18, 2009 4:00 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Combination Coupons
Replies: 4
Views: 2927

Re: Combination Coupons

I have been the biggest whiner about this issue; here's a solution that's (slightly) less onerous than the RC1 install and works perfectly for me - go figure :). Oh well. Eagerly awaiting the real solution from Able in 7.0.3. Caveats: - This is a hack. A teeny, ugly, little hack :twisted: . It does ...
by nickc
Wed Feb 18, 2009 1:51 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: where's code for "Pay with card" button click
Replies: 2
Views: 1813

Re: where's code for "Pay with card" button click

Payment forms are dynamically loaded: /Checkout/PaymentForms/CreditCardPaymentForm.ascx
by nickc
Fri Feb 13, 2009 6:27 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Combination Coupons
Replies: 4
Views: 2927

Re: Combination Coupons

At last - validation! No problem guys - it was a feature in AC7 RC1 (Jan '08). Just install that version :). I went around and around this topic last spring. As of June '08 there were no plans by Able to introduce this functionality. I'm concerned that the resolution of this issue will not result in...
by nickc
Thu Feb 12, 2009 4:29 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Filtering on Fields from Product Templates
Replies: 11
Views: 6938

Re: Filtering on Fields from Product Templates

Built in? no - but Product Templates are very useful and extensible. I've built a wrapper class to expose those fields: public class ExtendedProduct { public ExtendedProduct(int productId) { this.Product = ProductDataSource.Load(productId); } public ExtendedProduct(Product product) { this.Product = ...
by nickc
Thu Feb 12, 2009 4:07 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Sales & Use Tax - Something's got to make sense.
Replies: 8
Views: 4229

Re: Sales & Use Tax - Something's got to make sense.

Avalara plugged in pretty easily - VS made the method stubs and I filled them in :). We've been using it for a few months now with no issues and only one noticable outage. The only implementation problem I encountered was having to modify Able Admin pages - order editing operations do not use TaxPro...
by nickc
Wed Feb 11, 2009 3:15 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: A license/ablecommerce shopping cart 7.0 for sale
Replies: 3
Views: 2236

Re: A license/ablecommerce shopping cart 7.0 for sale

... III. LICENSE GRANT Able hereby grants to Licensee, and Licensee hereby accepts, subject to the terms and conditions set forth in this Agreement, a non-exclusive and nontransferable license to use the templates and User's Guide as set forth in this Agreement. The term "license" as used in this A...
by nickc
Tue Feb 10, 2009 2:21 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Product Removed Zero Inventory
Replies: 4
Views: 2370

Re: Product Removed Zero Inventory

See Configure >> Order Statuses in Admin.
You can choose when to de-stock; we do the same - de-stock on Order submitted and re-stock if the Order gets cancelled later.
by nickc
Mon Feb 09, 2009 5:09 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Reorder stock alert
Replies: 2
Views: 1789

Re: Reorder stock alert

Possible to do directly from the database (assuming you're using SQL2005+).
Use a trigger to compare ac_Products.InStock with ac_Products.InStockWarningLevel:
see http://www.4guysfromrolla.com/webtech/t ... 06-1.shtml