Search found 12 matches

by FirstDivision
Fri Mar 08, 2013 4:00 pm
Forum: AbleCommerce GOLD
Topic: Get Credit Card Auth Information out of an Order object
Replies: 1
Views: 3560

Get Credit Card Auth Information out of an Order object

I'm writing a routine to build xml files of each order as they come through the PaymentWidget. I am building the order in the following event when e.CheckoutResponse.Success is true: private void HandleCheckoutResponse(object sender, CheckedOutEventArgs e) There is one block of XML I'm having troubl...
by FirstDivision
Wed Mar 06, 2013 12:52 pm
Forum: AbleCommerce GOLD
Topic: Tap into Order Workflow
Replies: 5
Views: 5433

Re: Tap into Order Workflow

Awesome, thank you! Using SVN and then merging customizations into the new version makes perfect sense!
by FirstDivision
Wed Mar 06, 2013 10:32 am
Forum: AbleCommerce GOLD
Topic: Tap into Order Workflow
Replies: 5
Views: 5433

Re: Tap into Order Workflow

Awesome, thank you mazhar. That looks like it should work. How does this affect upgrading? I guess it's inevitable that when upgrading I would have to re-apply any custom code changes made to the user controls (or build my own and update my custom controls with any new logic added form Able in an up...
by FirstDivision
Tue Mar 05, 2013 12:01 pm
Forum: AbleCommerce GOLD
Topic: Tap into Order Workflow
Replies: 5
Views: 5433

Tap into Order Workflow

I've seen the email templates and how they can tie into order workflow states, but what if you need to perform custom processing on orders when they hit certain states? An example is if there is existing backoffice software that needs to be "fed" information via xml: So...say I want to create a file...
by FirstDivision
Tue Mar 05, 2013 11:09 am
Forum: AbleCommerce GOLD
Topic: Responsive Design Themes?
Replies: 8
Views: 9547

Re: Responsive Design Themes?

Thank you for the responses so far. I'm learning a lot, but I have a ways to go I'm sure.. ...create a theme following responsive design gidelines for standard store. Which, if I understand correctly, would require modifying any base user-controls that the design-side team says "this needs to change...
by FirstDivision
Fri Mar 01, 2013 11:16 am
Forum: AbleCommerce GOLD
Topic: Responsive Design Themes?
Replies: 8
Views: 9547

Responsive Design Themes?

I've been evaluating Gold for a while and can't seem to find any information on this. Are there themes available that are responsive ready? From what I can see, all the default themes use tables in quite a few places. This would make incorporating responsive design (more) difficult. If not, is the a...
by FirstDivision
Mon Feb 04, 2013 1:57 pm
Forum: AbleCommerce GOLD
Topic: Custom Url Routing
Replies: 1
Views: 2795

Re: Custom Url Routing

I've made a little more progress on my own, but let me try to explain this a little better what my goal is: We have an in-house CMS that works great for traditional CMS stuff, templating, extensionless urls, etc...but we need to add ecommerce capabilities to it, so we're trying to make the two work ...
by FirstDivision
Fri Feb 01, 2013 3:06 pm
Forum: AbleCommerce GOLD
Topic: Custom Url Routing
Replies: 1
Views: 2795

Custom Url Routing

I've been integrating Able with a custom CMS and have another question. This time about custom urls. I've gotten our CMS to pass processing of the "normal" product URLs to Able, but so far can't get the custom urls to behave the same way. So, for example, if I have myproduct, the Able-generated URL ...
by FirstDivision
Fri Feb 01, 2013 11:32 am
Forum: AbleCommerce GOLD
Topic: ConLib / Scriptlet for ProductPage - Specific Product
Replies: 6
Views: 9617

Re: ConLib / Scriptlet for ProductPage - Specific Product

Well, until I hear otherwise I think I'm on my way. I created a copy of ProductImage.ascx and called it ProductImageByID.ascx, then I added a property: [Personalizable(), WebBrowsable()] public int ProductID { get { return _ProductId; } set { _ProductId = value; _Product = ProductDataSource.Load(_Pr...
by FirstDivision
Fri Feb 01, 2013 10:13 am
Forum: AbleCommerce GOLD
Topic: ConLib / Scriptlet for ProductPage - Specific Product
Replies: 6
Views: 9617

Re: ConLib / Scriptlet for ProductPage - Specific Product

I'm working with Gold. Now I'm not sure what to do...what's the correct way to do what I want in Gold?
by FirstDivision
Thu Jan 31, 2013 8:34 pm
Forum: AbleCommerce GOLD
Topic: ConLib / Scriptlet for ProductPage - Specific Product
Replies: 6
Views: 9617

Re: ConLib / Scriptlet for ProductPage - Specific Product

Yeah, pretty much that was my suspicion. It's looking for a serialized product I guess? What did you mean by yet ? So maybe my only option at this point is to create my own control that will do what I want? I'm still learning this, but it seems that maybe the name of the control and the associated p...
by FirstDivision
Thu Jan 31, 2013 5:09 pm
Forum: AbleCommerce GOLD
Topic: ConLib / Scriptlet for ProductPage - Specific Product
Replies: 6
Views: 9617

ConLib / Scriptlet for ProductPage - Specific Product

While trying to integrate Able functionality with another CMS I have run into a bit of a stumbling block: I have been able to create a wrapper for the "HtmlContainer" CommerceBuilder control, and through our wrapper pass the ConLib/Scriptlet language into the HtmlContiner value property. This works ...