Search found 10 matches

by JimFriend
Tue Dec 29, 2009 7:42 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: XML Sitemap being created in wrong directory
Replies: 6
Views: 6549

Re: XML Sitemap being created in wrong directory

I tried changing it to "~/" like you suggested but still got an error.

So I tried hardcoding the path in and it worked correctly. Obviously this isn't ideal because if anything changes or if they move the site it will error, but for now it's working at least.
by JimFriend
Tue Dec 29, 2009 7:07 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: XML Sitemap being created in wrong directory
Replies: 6
Views: 6549

Re: XML Sitemap being created in wrong directory

Thanks for the quick reply, mazhar. I tested out the above code and this is what I found: First, there are two spots where "options.DefaultUrlPriority = AlwaysConvert.ToDecimal(DefaultUrlPriority.Text);" shows up. It shows up once in GetPostedOptions() and once in initializeControls(). I tried your ...
by JimFriend
Mon Dec 28, 2009 4:40 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: XML Sitemap being created in wrong directory
Replies: 6
Views: 6549

XML Sitemap being created in wrong directory

So I originally I had a multi-store setup working where two stores shared the same database. That was working fine, but my client wanted to split the sites in the end so that he had two sites running on two separates databases. I accomplished this fine. Everything is working as I would expect it to ...
by JimFriend
Wed May 06, 2009 12:51 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Email Basket
Replies: 5
Views: 6566

Re: Email Basket

I know this is a bit of an old post... however I'm using this control and I'm getting some odd results. For instance, it will function correctly if I am logged out of AC when I send the email off -- the email will go through, and clicking the basketlink in the email brings up the basket with the cor...
by JimFriend
Sun Apr 19, 2009 9:31 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: html Editor grey background
Replies: 3
Views: 3338

Re: html Editor grey background

I know this is from a month ago but I also ran into this issue. The HTML Editor was pulling the background-image and background-color from my custom Theme. Unfortunately I am using a dark gray background-image and dark gray background-color so it made typing anything pretty much impossible without h...
by JimFriend
Mon Apr 13, 2009 9:53 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Browser compatability IE6/7/8, FF, etc. Test your sites.
Replies: 3
Views: 3163

Re: Browser compatability IE6/7/8, FF, etc. Test your sites.

IE also has a problem with min-width and max-width. This shows up on the product pages.
by JimFriend
Tue Apr 07, 2009 2:10 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Custom RadioButtonList on One Page Checkout
Replies: 1
Views: 1955

Re: Custom RadioButtonList on One Page Checkout

I now have a solution for the problem above. I figured I'd post it here in case anyone else runs into a similar problem. Thanks to heinscott for figuring this out. The issue was the placement of my DataBind'ing that was populating my custom radiobuttonlist. I had it in the Page_Load. It should have ...
by JimFriend
Mon Apr 06, 2009 4:27 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Stumped - Swatch option name font, color
Replies: 2
Views: 2665

Re: Stumped - Swatch option name font, color

Judy, thanks for the start on this one. In order to adjust the style on the actual Options that the customer selects I needed to add a custom class to the TD right below the line you referenced. Here's what I ended up with: phOptions.Controls.Add(new LiteralControl("<td align=\"left\" class=\"Option...
by JimFriend
Mon Apr 06, 2009 2:48 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Custom RadioButtonList on One Page Checkout
Replies: 1
Views: 1955

Custom RadioButtonList on One Page Checkout

So I have a dynamic, custom RadioButtonList on the One Page Checkout. I need the customer to be able to select one of the options, and then when they click "Checkout" to complete their order I need to have the value of their selection inserted into a new table I created in the database. So I have th...
by JimFriend
Mon Mar 23, 2009 12:53 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Need 'bullet list' of: Choice name: choice made
Replies: 4
Views: 4075

Re: Need 'bullet list' of: Choice name: choice made

Thanks for the great start, dbreyley. I had to add a couple things so I figured I'd post them here as well in case other people were looking for a fix like this. For the GetVariantList function in BasketItemDetail.ascx.cs, I changed this line: string RetVal = ""; to this: string RetVal = "<br />"; I...