Search found 66 matches

by RickSilver
Fri Apr 19, 2019 4:20 am
Forum: AbleCommerce GOLD
Topic: Help! Needed with Checkout
Replies: 6
Views: 9262

Re: Help! Needed with Checkout

That's very possible. I did not realize all of that information was in the hash. We'll check it out.

Thanks
Rick
by RickSilver
Thu Apr 18, 2019 10:32 am
Forum: AbleCommerce GOLD
Topic: Help! Needed with Checkout
Replies: 6
Views: 9262

Re: Help! Needed with Checkout

We are on GOLD. Not sure of version. If not latest, close to it. The custom code reads from some custom SQL tables to fill in custom dropdowns. When the item in the dropdown 1 changes, Ajax is used to fill in the dropdown 2. Together, they determine the default shipping option in dropdown ShipMethod...
by RickSilver
Sun Apr 14, 2019 2:57 am
Forum: AbleCommerce GOLD
Topic: Help! Needed with Checkout
Replies: 6
Views: 9262

Re: Help! Needed with Checkout

It is hitting this piece of code in OPC.aspx.cs.. //Make sure basket hasn't changed during checkout if (_CurrentBasketHash != _SavedBasketHash) { e.Cancel = true; CheckoutMessagePanel.Visible = true; CheckoutMessage.Text = "Your order has not been completed and payment was not processed.<br /><br />...
by RickSilver
Fri Apr 05, 2019 4:39 am
Forum: AbleCommerce GOLD
Topic: Help! Needed with Checkout
Replies: 6
Views: 9262

Help! Needed with Checkout

I randomly get the error at Checkout that happens when it thinks the basket has changed //Make sure basket hasn't changed during checkout if (_CurrentBasketHash != _SavedBasketHash).... It's totally random and I have been unable to solve this for a while. I have some custom code in OPC.aspx.cs but d...
by RickSilver
Tue Sep 26, 2017 2:18 pm
Forum: AbleCommerce GOLD
Topic: weird insert payment error
Replies: 3
Views: 5046

Re: weird insert payment error

Thanks! It was the 50 character limit of the Reference number.
by RickSilver
Mon Sep 25, 2017 1:22 pm
Forum: AbleCommerce GOLD
Topic: weird insert payment error
Replies: 3
Views: 5046

weird insert payment error

Exception: could not insert: [CommerceBuilder.Payments.Payment][SQL: INSERT INTO ac_Payments (OrderId, SubscriptionId, PaymentMethodId, PaymentMethodName, ReferenceNumber, Amount, CurrencyCode, PaymentDate, PaymentStatusId, PaymentStatusReason, CompletedDate, EncryptedAccountData, ReCrypt, IsSubscri...
by RickSilver
Sat Sep 02, 2017 1:15 pm
Forum: AbleCommerce GOLD
Topic: Can't complete checkout due to shipping change
Replies: 0
Views: 21762

Can't complete checkout due to shipping change

On OPC, the user selects a choice from a list which changes the shipping method and fee in the existing dropdown. During checkingout() the saved and basket hashes no longer match. I've tried doing a RecalculateBasket() first, but they still don't match. How do I solve this problem? Thanks! Rick Gold...
by RickSilver
Wed Aug 30, 2017 11:50 am
Forum: AbleCommerce GOLD
Topic: Anyone have R12 ExtendedFields working?
Replies: 15
Views: 15429

Re: Anyone have R12 ExtendedFields working?

Are ExtendedFields working for Orders now?
Rick
by RickSilver
Tue Feb 28, 2017 2:55 am
Forum: AbleCommerce GOLD
Topic: Basket modified during checkout
Replies: 2
Views: 3763

Re: Basket modified during checkout

I can't find the post I saw that said it was a bug fixed in AC7 but I think I'm running into this:

viewtopic.php?f=42&t=15653&p=67111&hili ... ied#p67111

Rick
by RickSilver
Sat Feb 25, 2017 7:23 am
Forum: AbleCommerce GOLD
Topic: Basket modified during checkout
Replies: 2
Views: 3763

Basket modified during checkout

I understand that in AC7, customized checkout pages can cause the basket to appear modified, and this was supposedly fixed in AC7. I am getting this in AC GOLD with a customized page. It happens most of the time and usually succeeds on the 2nd attempt. This is annoying our customers. Any solution or...
by RickSilver
Fri Jan 27, 2017 4:54 pm
Forum: AbleCommerce GOLD
Topic: HELP! Ajax and jquery
Replies: 1
Views: 3010

HELP! Ajax and jquery

I am very familiar with JQuery and ajax and have done what I need in the past but have spent all day trying to get what should be a simple ajax call to not return a 200, 500 or other error within this AC environment!!! :evil: I'm sure it's something stupid I'm missing. I'm trying to get data for a d...
by RickSilver
Tue Jan 24, 2017 2:45 pm
Forum: AbleCommerce GOLD
Topic: Updating Shipping Dropdown from custom address field
Replies: 2
Views: 11538

Updating Shipping Dropdown from custom address field

I couldn't find anyone doing this already in the forum. On the checkout page, I have my own address input fields that change when a user changes a selection from a custom dropdown list. Along with the address change, I also need to recalculate the Shipping options based on what is in those address f...
by RickSilver
Wed Aug 31, 2016 1:59 pm
Forum: AbleCommerce GOLD
Topic: Referencing custom data in email template
Replies: 3
Views: 5054

Re: Referencing custom data in email template

Thanks. Any idea why I'm not getting emails? I've verified emailTemplate is not null. Nothing in spam. EmailTemplate emailTemplate = EmailTemplateDataSource.Load(1); if (emailTemplate != null) { emailTemplate.Parameters["recipient"] = "rsilver@gmail.com"; emailTemplate.ToAddress = "rsilver@gmail.com...
by RickSilver
Tue Aug 30, 2016 3:18 pm
Forum: AbleCommerce GOLD
Topic: Referencing custom data in email template
Replies: 3
Views: 5054

Referencing custom data in email template

How do I go about referencing data I have in a custom sql table in an Email template? Is this possible or must I send the template out myself in code?

Rick
by RickSilver
Sat Jul 16, 2016 10:52 am
Forum: AbleCommerce GOLD
Topic: CSS Help for Bootstrap
Replies: 4
Views: 6308

Re: CSS Help for Bootstrap

I was able to take a look at your link and followed the example to change the top link. It is still not changing. I know my custom.css is working because I did get changing the navbar background color working. But just adding the css for "a" did nothing to change the links. :?: :?: :?: :|
by RickSilver
Tue Jul 12, 2016 5:47 pm
Forum: AbleCommerce GOLD
Topic: CSS Help for Bootstrap
Replies: 4
Views: 6308

Re: CSS Help for Bootstrap

Thanks! I haven't tried it yet but it looks like exactly what I need to get going. :)
by RickSilver
Mon Jul 11, 2016 4:39 pm
Forum: AbleCommerce GOLD
Topic: CSS Help for Bootstrap
Replies: 4
Views: 6308

CSS Help for Bootstrap

I have to make some cosmetic changes in a site using BOOTSTRAP_RESPONSIVE and I'm not getting very far. I've tried every class and id that makes sense in custom.css and even tried inline styles but I can't change some items. Specifically, I need to change the color of the links in the store header (...
by RickSilver
Sun Jul 10, 2016 6:30 am
Forum: AbleCommerce GOLD
Topic: R9 to R12 Styling help
Replies: 1
Views: 2164

Re: R9 to R12 Styling help

Update: I am getting custom.css to work now. I had a typo.
by RickSilver
Sun Jul 10, 2016 6:26 am
Forum: AbleCommerce GOLD
Topic: R9 to R12 Styling help
Replies: 1
Views: 2164

R9 to R12 Styling help

I'm upgrading a site from R9 to R12. It seems I don't have access to style.css except from the Admin pages and even then, there seems to be a bug where the Extra content does not always save. I tried adding styles to custom.css but they don't seem to take effect. I'm also changing to the new Bootstr...
by RickSilver
Thu Mar 05, 2015 3:28 pm
Forum: AbleCommerce GOLD
Topic: Help with updating style sheet
Replies: 3
Views: 2746

Re: Help with updating style sheet

I am familiar with what's in there. I'm looking for something specific to modifying the stylesheet for a conversion from AC7 to Gold.
by RickSilver
Wed Mar 04, 2015 4:48 pm
Forum: AbleCommerce GOLD
Topic: Help with updating style sheet
Replies: 3
Views: 2746

Help with updating style sheet

I'm converting a store from AC7 to Gold. I'm attempting to make it look the same but the style sheets are very different. The logo, header, nav, and shortcuts were not too bad but trying to get the side category widget to look the same is proving very difficult. Is there any documentation that would...
by RickSilver
Tue Mar 03, 2015 3:08 pm
Forum: AbleCommerce GOLD
Topic: Custom fields for variants
Replies: 2
Views: 2302

Re: Custom fields for variants

Thanks Judy!
by RickSilver
Sat Feb 21, 2015 2:55 pm
Forum: AbleCommerce GOLD
Topic: Custom fields for variants
Replies: 2
Views: 2302

Custom fields for variants

I've done custom fields for a Product before but can custom fields be used for variants?

Rick