Search found 8 matches

by astroutkarsh
Mon Dec 07, 2009 6:30 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: JS file size issue
Replies: 1
Views: 1743

JS file size issue

Hello Everyone, I have some problem with java script files. On home page, there are few js files like "ScriptResource_005.js" etc. These files has size 250 to 350 KB. Hence my Home takes time to Load and size goes above 1.5 MB. I have graphics on home page (500 KB appx). I checked these JS files & t...
by astroutkarsh
Mon Nov 23, 2009 11:18 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Cart with zero(0) cost
Replies: 2
Views: 2012

Re: Cart with zero(0) cost

mazhar wrote:Its the Website/Checkout/PaymentForms/ZeroValuePaymentForm.ascx and its code file. So if you are updating payment forms with your code then update this one as well.
Thanks a Lot :) .
by astroutkarsh
Fri Nov 20, 2009 8:27 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Cart with zero(0) cost
Replies: 2
Views: 2012

Cart with zero(0) cost

I need to give out product free. For that i need to have 2 coupons.(1 for order and other for Shipping) I have created those. On OnePageCheckout, i applied both. On Click of Pay, i get the message "There is no charge for your item(s). Click below to complete your order." From where this appears ? No...
by astroutkarsh
Fri Nov 13, 2009 3:18 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: SEO & URL Canonicalization
Replies: 3
Views: 2411

Re: SEO & URL Canonicalization

I think in 7.0.3 Able eliminated all the Cs in the product links on a category page. They might have missed one page, but you can change the links. Once the page gets the catalognode, substitute the product link. if (catalogNode.CatalogNodeType == CatalogNodeType.Product) { Product product = (Produ...
by astroutkarsh
Thu Nov 12, 2009 4:22 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: SEO & URL Canonicalization
Replies: 3
Views: 2411

SEO & URL Canonicalization

Hello all, I am using AbleCommerce 7.0.2. From my product landing pages ( CatgegoryGrid4), the URL for product is of following format <domain>/ProductName-P<ProductID>C(CategoryID>.aspx. But from "More Items in <Category Name>" section, product has different URL <domain>/ProductName-P<ProductID>.asp...
by astroutkarsh
Sat Oct 10, 2009 1:03 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Shipping Method Problem
Replies: 1
Views: 1990

Re: Shipping Method Problem

Hello All, No Replies yet. I will redefine it again. My client has fixed amount "Shipping Rate" say $0.30 for each item in Basket. So Shipping Amount should be (Qty * 0.30). But all current methods does not allow that. "Vary by Quantity" allows that but setting that for each product qty, will take t...
by astroutkarsh
Mon Oct 05, 2009 8:32 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Custoim Payent Gateway, getting Credit card details
Replies: 2
Views: 2155

Re: Custoim Payent Gateway, getting Credit card details

Yes, It is like PaymentMethodCollection methods = StoreDataHelper.GetPaymentMethods(Token.Instance.UserId); List<string> creditCards = new List<string>(); List<string> intlDebitCards = new List<string>(); foreach (PaymentMethod method in methods) { if (method.IsCreditOrDebitCard()) { CardType.Items....
by astroutkarsh
Mon Oct 05, 2009 7:14 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Shipping Method Problem
Replies: 1
Views: 1990

Shipping Method Problem

Hello, I am bit familer to Able Commerce & using VERSION: 7.0.2 BUILD: 11659. I have added few Shipping method of my own (Client's Reqs). I have added these for "Vary By Quantity". But when i add Quantity more than 1(on Basket Page), on check-out page (OnePage Checkout), its calculate for 1 item onl...