Search found 17 matches

by arobinson@izilla
Tue Jul 29, 2008 12:13 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Paypal..how to set up?
Replies: 26
Views: 14658

Re: Paypal..how to set up?

Hmm. I'm not auth'd to view bug 6384.

Cool, thanks, I'll tell the boss-man it should be fixed when we go to final.

In the meantime though, judging by 6290, I'd like to try auth-on-sale rather than capture-on-sale. Hopefully that will be a decent workaround for now.
by arobinson@izilla
Mon Jul 28, 2008 10:21 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Paypal..how to set up?
Replies: 26
Views: 14658

Re: Paypal amount doubling issue

Hi guys, Did this bug actually end up getting fixed? I'm running RC3 at the moment, with PayPal set up with IPN and Capture-on-Sale. On Live, we're getting multiple payments recorded (even though they're just the same payment). It looks like one from the IPN and another from the user returning to th...
by arobinson@izilla
Tue Jun 17, 2008 11:14 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Graceful Degradation
Replies: 1
Views: 1963

Re: Graceful Degradation

I think the general consensus is that most people don't realise that javascript reliance is bad for accessibility, and furthermore most people who do realise don't really care: the people who are unable to use conventional browsers are such a small market share, it just doesn't make any money to do ...
by arobinson@izilla
Thu May 15, 2008 11:15 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Skipped/missing order numbers
Replies: 1
Views: 1970

Skipped/missing order numbers

Hi guys, We just noticed that we're missing some order numbers. It goes something like: ... 80083, 80084, 80087, 80088 ... This is the only gap that we can't explain. Has anyone seen this before? We're thinking it might be something to do with executing an "INSERT INTO ac_Orders blah blah blah" with...
by arobinson@izilla
Tue Mar 11, 2008 3:42 pm
Forum: Good Reference Posts
Topic: Source for Payment Gateway Authorize.net
Replies: 37
Views: 237066

Anyway, I just ended up adding a line like

Code: Select all

instrumentBuilder["AccountName"] = CardName.Text;
in the GetPayment method of CreditCardPaymentForm. Seems to work now. :-)
by arobinson@izilla
Mon Mar 10, 2008 4:06 pm
Forum: Good Reference Posts
Topic: Source for Payment Gateway Authorize.net
Replies: 37
Views: 237066

I've noticed that the AuthorizeNet doesn't seem to use "Name on card" for Visa etc. I tried looking in AccountData etc for where I could find it, but found nothing. On further inspection in CreditCardPaymentForm, it doesn't look like the "name on card" field is stored at all: only validated. Is this...
by arobinson@izilla
Thu Mar 06, 2008 8:05 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: making a basket summary display on all pages
Replies: 18
Views: 21700

Sorry. I assumed you knew what basket.Items did on happy days. I'll expand the scenario for you: Add "Boots" to empty basket. basket.Items.Count is 1. Add "Boots" again. basket.Items.Count is 2. Add "Boots" again. basket.Items.Count is 2. Add "Boots" again. basket.Items.Count is 2. Add "Boots" again...
by arobinson@izilla
Thu Mar 06, 2008 7:23 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: making a basket summary display on all pages
Replies: 18
Views: 21700

If you just want to display basket summary. Just create a very simple control that for example does nothing more than to use basket.Items.TotalPrice to display the basket total and/or basket.Items.Count to display number of items in the basket. Yeah. Only problem is, basket.Items.Count won't quite ...
by arobinson@izilla
Tue Mar 04, 2008 10:11 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: making a basket summary display on all pages
Replies: 18
Views: 21700

Even with billing address different to shipping address? (Just make a dummy checkout)
What version are you running? I'm on RC2 and it won't work for me.
by arobinson@izilla
Tue Mar 04, 2008 8:48 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: making a basket summary display on all pages
Replies: 18
Views: 21700

Even in the checkout page ?
by arobinson@izilla
Tue Mar 04, 2008 8:14 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: making a basket summary display on all pages
Replies: 18
Views: 21700

Hmm. Agreed; bugs will slip into even the best software.
But now that we know that this bug exists, we can fix it :-)
by arobinson@izilla
Tue Mar 04, 2008 8:01 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: making a basket summary display on all pages
Replies: 18
Views: 21700

Hello, The mini basket is not intended for use during the checkout process and I cannot think of a good reason for it ever to be included in this process either. If it's not intended for use during the checkout process, and won't work in very subtle ways, can we make sure this is documented somewhe...
by arobinson@izilla
Tue Mar 04, 2008 7:20 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: making a basket summary display on all pages
Replies: 18
Views: 21700

I think Basket.Package is a method that prepares the current basket instance for specific steps within the checkout process or shipping method computations. I'm not sure it's meant to be used any other way. If you want a modified form of the minibasket on all your pages, couldn't you just use the e...
by arobinson@izilla
Tue Mar 04, 2008 2:36 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: making a basket summary display on all pages
Replies: 18
Views: 21700

Sorry, I'll clarify: The basket summary is a custom control we created, based on the mini basket. It's calling basket.Package(true) (just like mini basket does), and this is causing problems during the checkout process. I was wondering if anyone had ever done a similar thing, such as showing mini ba...
by arobinson@izilla
Mon Mar 03, 2008 10:27 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: making a basket summary display on all pages
Replies: 18
Views: 21700

making a basket summary display on all pages

Hi, I'm having some trouble with a touch tricky bug, and any help or suggestions would be appreciated. We have a basket summary, which displays on all pages: it just shows something like "View Basket | You have 2 items in your basket. Subtotal: $179.99" It calls basket.Package(true) and then gets ba...
by arobinson@izilla
Thu Feb 28, 2008 3:09 pm
Forum: Good Reference Posts
Topic: Source for Payment Gateway Authorize.net
Replies: 37
Views: 237066

Thanks, this looks very useful. I'm just going through it and retrofitting it to another gateway now.. I'm not entirely sure what the BuildDisplayForm function is for; could you shed some light on this for me? From the merchant admin web site, you will add or edit the gateway settings. BuildConfigF...
by arobinson@izilla
Mon Feb 25, 2008 5:25 pm
Forum: Good Reference Posts
Topic: Source for Payment Gateway Authorize.net
Replies: 37
Views: 237066

Thanks, this looks very useful.

I'm just going through it and retrofitting it to another gateway now.. I'm not entirely sure what the

Code: Select all

BuildDisplayForm
function is for; could you shed some light on this for me?