Search found 42 matches

by jasonhendee
Tue Oct 07, 2014 8:49 am
Forum: AbleCommerce GOLD
Topic: ShopBy Filters within R9
Replies: 4
Views: 3759

ShopBy Filters within R9

In a development installation (on the Search.aspx page), I noticed that any 'ShopBy' filters in place are lost upon paging, as well as when the number of products displayed is changed; the filters do, however, remain in place upon changing the sort by selection. I haven't looked into it too deeply y...
by jasonhendee
Wed Mar 06, 2013 10:57 am
Forum: AbleCommerce GOLD
Topic: Left Sidebar in AC Gold (scriptlet in old version)
Replies: 6
Views: 6750

Re: Left Sidebar in AC Gold (scriptlet in old version)

Mazhar,

Thank you for the LINQ-based fix; much less modification than mine :)
by jasonhendee
Wed Feb 27, 2013 6:14 pm
Forum: AbleCommerce GOLD
Topic: Left Sidebar in AC Gold (scriptlet in old version)
Replies: 6
Views: 6750

Re: Left Sidebar in AC Gold (scriptlet in old version)

To save someone else frustration here, I wanted to point out an apparent bug (which I have logged using AC's new feedback tool within the admin panel). I am using Gold R3 B5078, btw. If you want to place your custom controls within a nested directory for organization (i.e. 'ConLib/Custom/'), the Edi...
by jasonhendee
Tue Feb 19, 2013 11:35 pm
Forum: AbleCommerce GOLD
Topic: WAP Deployment Workflow
Replies: 1
Views: 2914

WAP Deployment Workflow

I am wanting to use the WAP model of AC Gold, but have never used this type of project in the past. In reading some MSDN articles, I believe I understand correctly that I can simply publish my project to a target directory on my local machine, and upload the published site to my web server; it seems...
by jasonhendee
Mon Jul 16, 2012 6:18 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: IE Conditional Stylesheets
Replies: 4
Views: 12317

Re: IE Conditional Stylesheets

@mouse_8b: Thank you for offering up your suggestion for conditional stylesheets. I tried it, but there were some things that didn't work well for me. First, the path isn't relative, so in order for this to work properly in my dev and production environments (my dev site doesn't sit on the root of m...
by jasonhendee
Wed Mar 14, 2012 11:23 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Source Code Question
Replies: 2
Views: 2663

Re: Source Code Question

The SQL table [ac_OptionChoices] contains fields called [PriceModifier], [CogsModifier], [WeightModifier] & [SkuModifier]. Of these four very relevant "modifier" fields, only the COGS is not calculated in the ProductVariant class, based on a product's currently selected options (in the CalculateVari...
by jasonhendee
Tue Mar 13, 2012 4:41 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Source Code Question
Replies: 2
Views: 2663

Source Code Question

Why was there not a "_CalculatedCogs" variable added to the CommerceBuilder.Products.ProductVariant.cs class? It's easy enough to simply add and calculate with the rest of them, but with the other "_Calculated..." variables, it just seems like this one may have simply been overlooked? Any fellow sou...
by jasonhendee
Wed Jan 25, 2012 11:19 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: USPS changes again?
Replies: 33
Views: 29350

Re: USPS changes again?

Speedy - What you're experiencing is what I was referring to in my post above. When you run the SQL update query, it fixes the problem on the front end, but not in the admin panel. There's truly no need to select anything in the admin panel for those shipping options since they have already been def...
by jasonhendee
Tue Jan 24, 2012 7:07 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: USPS changes again?
Replies: 33
Views: 29350

Re: USPS changes again?

In an ideal world, USPS would assign a unique identifier to each different service so we wouldn't have to be dependent on the name - since they seem to change these on a once per year schedule. It is truly a shame that you have to waste your time worrying about stuff like this.. but again, thanks f...
by jasonhendee
Tue Jan 24, 2012 6:24 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: USPS changes again?
Replies: 33
Views: 29350

Re: USPS changes again?

Cool, that worked. Note that I would recommend still placing the "uspsmethods.csv" in the "App_Data" directory, as instructed in the AC help doc ("USPS changes effective January 22nd, 2012") - just noticed this in the help page announcements ;) Otherwise, it doesn't appear that the USPS' configurati...
by jasonhendee
Tue Jan 24, 2012 3:57 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: USPS changes again?
Replies: 33
Views: 29350

Re: USPS changes again?

Are you making these changes directly within SQL?
by jasonhendee
Wed Nov 30, 2011 4:23 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Much Difficulty Developing Locally... Very Frustrated
Replies: 11
Views: 8048

Re: Much Difficulty Developing Locally... Very Frustrated

Great info Mike and Joe - I seem to be up and running! Thank you so much.
by jasonhendee
Wed Nov 30, 2011 3:48 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Much Difficulty Developing Locally... Very Frustrated
Replies: 11
Views: 8048

Re: Much Difficulty Developing Locally... Very Frustrated

Ok, so the only way I could see to strip the URL of that port number was to actually create a new web application in IIS pointing to my directory, and manually load it in the browser (instead of relying solely on the ASP.NET Development Server). It does now load my site! So while I can at least buil...
by jasonhendee
Wed Nov 30, 2011 3:15 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Much Difficulty Developing Locally... Very Frustrated
Replies: 11
Views: 8048

Re: Much Difficulty Developing Locally... Very Frustrated

Mike, I thought I understood that VS creates it's own instance of the site when I 'browse' that site from within VS. So I thought it wasn't necessary to actually go through the steps within IIS to create a new site. Am I incorrect in my understanding here? If VS is what's responsible for adding the ...
by jasonhendee
Wed Nov 30, 2011 3:10 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Much Difficulty Developing Locally... Very Frustrated
Replies: 11
Views: 8048

Re: Much Difficulty Developing Locally... Very Frustrated

Note that I am still trying to point this local instance to the remote SQL server on my dev box. I know there is a field in the db called 'Store_StoreUrl' in the 'ac_StoreSettings' table, which is currently set to 'http://dev.cablesforless.local/' (the url on that server's instance of the site). Cou...
by jasonhendee
Wed Nov 30, 2011 3:03 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Much Difficulty Developing Locally... Very Frustrated
Replies: 11
Views: 8048

Re: Much Difficulty Developing Locally... Very Frustrated

Thanks Joe. As much as I'd love a new machine... that may not be an option at this time (have been thinking about asking the higher-ups for just that for various reasons, so we'll see). It seems that the permissions issues may have been responsible for my 'Configure2.aspx' hangups, but I feel like I...
by jasonhendee
Wed Nov 30, 2011 2:30 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Much Difficulty Developing Locally... Very Frustrated
Replies: 11
Views: 8048

Re: Much Difficulty Developing Locally... Very Frustrated

Mike,

Thanks for your reply. What I requested, and am trying to use.. was a dev license for 'localhost'. I do see that there is a port number specified in the url when I try to browse from VS ('http://localhost:50975/AbleCommerce/Default.aspx' to be more specific) - is this a problem?
by jasonhendee
Wed Nov 30, 2011 1:05 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Much Difficulty Developing Locally... Very Frustrated
Replies: 11
Views: 8048

Much Difficulty Developing Locally... Very Frustrated

I will say first of all that I'm using VS2008 on Vista Business. As I tried to do a fresh install of the application (several times), I ran into a common problem where the install process would get hung on 'Configure2.aspx' - see my post here: http://forums.ablecommerce.com/viewtopic.php?f=42&t=9933...
by jasonhendee
Wed Nov 30, 2011 12:25 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: 7.0.2 Install Not working Licensed Version
Replies: 3
Views: 3514

7.0.7 Stuck on 'configure2.aspx'

This is still very much a problem in 7.0.7... and frankly, it's exhausting. I have installed AC 7.0.7 successfully, several times now on my development server & production server. But I recently decided to start developing / debugging locally. And suddenly this problem appears. I fill in all of the ...
by jasonhendee
Fri Aug 26, 2011 2:15 pm
Forum: Critique My AbleCommerce Shopping Cart Powered Site!
Topic: Getting settled into our new site.
Replies: 2
Views: 14223

Re: Getting settled into our new site.

XavierW wrote:The one thing I would look into is the stars for the reviews. Is there a way to hide the stars if there are no reviews? I know I've seen other sites where only the products that have reviews show the star rating.
Not a bad idea, easy enough. Thanks for the feedback!
by jasonhendee
Thu Aug 11, 2011 1:39 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Evaluating AbleCommerce, and disappointed - an honest review
Replies: 12
Views: 11310

In-Line Discounts Successful!

... If you had the source code to AC7, there is a class called DiscountCalculator that handles this step of figuring out the discounts and creating the line item. I can't really say what the impact might be if someone modified that code such that the discount were stored inline with the product... ...
by jasonhendee
Wed Aug 10, 2011 3:01 pm
Forum: Critique My AbleCommerce Shopping Cart Powered Site!
Topic: Getting settled into our new site.
Replies: 2
Views: 14223

Getting settled into our new site.

http://www.cablesforless.com I started with the out-of-the-box AC theme (since we've always had a "blue" presence), and just tweaked here and there it to make it our own. We launched on 5/12, and have implemented some mods since then. Here are a few of them: - Moved volume discounts into each discou...
by jasonhendee
Thu Aug 04, 2011 4:00 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Bug? Saving Product Weight
Replies: 1
Views: 1871

Re: Bug? Saving Product Weight

Fixed - in 'Admin' >> 'Products' >> 'EditProduct.aspx.cs' I changed line 66 from: Weight.Text = string.Format("{0:F2}", _Product.Weight); to: Weight.Text = string.Format("{0:F4}", _Product.Weight); And in 'Admin' >> 'Products' >> 'Variants' >> 'Variants.aspx.cs' I changed line 160 from: rowBuilder.A...
by jasonhendee
Wed Aug 03, 2011 1:23 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Bug? Saving Product Weight
Replies: 1
Views: 1871

Bug? Saving Product Weight

We sell some pretty light stuff - RJ45 Ends, for example, which weigh about 0.004lbs each. Since we do sell them by the piece, I have added them at that weight per item. When I type 0.004 into the weight textbox for this item (in the admin panel) and save, the weight holds. If I ever visit this same...
by jasonhendee
Thu Jun 23, 2011 10:19 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Enter key (instead of mouse click) doubles 'Add to Cart' qty
Replies: 0
Views: 2143

Enter key (instead of mouse click) doubles 'Add to Cart' qty

I have done some mods to the 'BuyProductDialog' control, so I'm curious if this is a bug I've introduced, or if it's something that anyone else can re-create. Scenario: - Version: 7.0.7.14481 - Only appears to happen in Google Chrome - On a product display page, click the "Add to Cart" button; it ad...