Search found 241 matches

by nadeem
Mon Jun 16, 2014 10:59 pm
Forum: AbleCommerce GOLD
Topic: Price Per Item Column on Gold Invoices
Replies: 5
Views: 3337

Re: Price Per Item Column on Gold Invoices

Thanks Judy :)
by nadeem
Mon Jun 16, 2014 6:38 am
Forum: AbleCommerce GOLD
Topic: Price Per Item Column on Gold Invoices
Replies: 5
Views: 3337

Re: Price Per Item Column on Gold Invoices

Don't forget to add closing tag at the end like this 8)

Code: Select all

</asp:TemplateField>
by nadeem
Mon Jun 16, 2014 3:01 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Product ordering not working as expected
Replies: 5
Views: 12719

Re: Product ordering not working as expected

If you have both featured and non-featured products in a category, it will sort and list featured first and then care about the admin sort order. If you want to sort the products by admin sort order by default, you need to add the following line in Conlib/CategoryGridPage.ascx above "Featured" list ...
by nadeem
Sun Jun 15, 2014 11:20 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Product ordering not working as expected
Replies: 5
Views: 12719

Re: Product ordering not working as expected

Which Ablecommerce build are you using? I am still not able to reproduce the issue in latest Gold R8 build. I suspect the issue might exists in some older releases and been fixed.
by nadeem
Sat Jun 14, 2014 4:24 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Product ordering not working as expected
Replies: 5
Views: 12719

Re: Product ordering not working as expected

I did tested this and the product ordering is working correctly for all category grid display pages. For me, the issue exists in category list page where the ordering is not working as expected when it is changed from the admin. I have reported the issue and will be fixed in next release. The fix is...
by nadeem
Sat Jun 14, 2014 2:34 am
Forum: AbleCommerce GOLD
Topic: Modifying Mobile pages
Replies: 4
Views: 2707

Re: Modifying Mobile pages

Mobile/UserControls/BuyProductDialog.ascx control is used on Mobile/Product.aspx page. Therefore, you can add financing option on any of these pages and it should render correctly on mobile product page.
by nadeem
Tue Jun 10, 2014 6:01 am
Forum: AbleCommerce GOLD
Topic: Our Zip Code being entered in shipping information
Replies: 62
Views: 33003

Re: Our Zip Code being entered in shipping information

The fix is in back-end code. If you have full source code, find CalculateTaxForDelivery method inside CommerceBuilder/Services/Taxes/AbleCommerce AbleCommerceTax.cs , locate the following code: // ENSURE SHIPPING ADDRESS IS VALID if (!shippingAddress.IsValidForTax) { shippingAddress.CountryCode = bi...
by nadeem
Thu Jun 05, 2014 12:35 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Where do I find this warning/error message?
Replies: 5
Views: 5020

Re: Where do I find this warning/error message?

This message is coming from ValidateShipStatus method inside Website/Conlib/OnePageCheckout.ascx.cs . To change the message, you have to update the following line: if (paymentForm) CheckoutMessage.Text = "Your order has not been completed and payment was not processed.<br /><br />Either a selected s...
by nadeem
Mon Jun 02, 2014 11:34 pm
Forum: AbleCommerce GOLD
Topic: Gold R6 mobile detection throws exception
Replies: 6
Views: 3529

Re: Gold R6 mobile detection throws exception

The above issue is already discussed and fixed for R8. A patch is also available for R7 here http://forums.ablecommerce.com/viewtopic.php?f=66&t=17932 for this and another similar issue. Here is the fix for mobile detection issue: return _mobileAgents1.IsMatch(userAgent) || (userAgent.Length > 4 && ...
by nadeem
Fri May 30, 2014 12:40 am
Forum: AbleCommerce GOLD
Topic: How to rename breadcrumbs like Wishlist
Replies: 3
Views: 2555

Re: How to rename breadcrumbs like Wishlist

Is there a sitemap file it's coming from? Yes, it's coming from Website/Web.sitemap file. Locate the following line: <siteMapNode url="~/Members/MyWishlist.aspx" title="Wishlist"> and update the title to rename the Wishlist breadcrumb like this for example: <siteMapNode url="~/Members/MyWishlist.as...
by nadeem
Wed May 21, 2014 11:53 pm
Forum: AbleCommerce GOLD
Topic: CustomHTML Control Not Working
Replies: 7
Views: 5178

Re: CustomHTML Control Not Working

To add custom HTML, you have to open WebSite/Conlib/CustomHTML.ascx in some editor of your choice and add your desired HTML. If you add some parameters in code behind, edit link will show at edit layout page that will give you the ability to edit parameters.
by nadeem
Fri Apr 25, 2014 5:20 am
Forum: AbleCommerce GOLD
Topic: Possible Bug: Auditing login events
Replies: 1
Views: 1902

Re: Possible Bug: Auditing login events

I just confirmed this issue exists in our latest R7 build as well. However, fix you have provided is little different. For the proper fix you have to update all AuditLogin_* methods except AuditLogin_InvalidUsername inside CommercBuilder\Users\AbleCommerceMembershipProvider.cs like this for example:...
by nadeem
Mon Mar 24, 2014 2:56 am
Forum: AbleCommerce GOLD
Topic: Alt Tag for Categorygridpage4 not working
Replies: 3
Views: 2677

Re: Alt Tag for Categorygridpage4 not working

Seems you have missed to provide 'Alt Text' to child categories. For me, this can only happen if I don't provide alt text to child categories.
by nadeem
Mon Mar 24, 2014 12:51 am
Forum: AbleCommerce GOLD
Topic: What happened to Custom Fields?
Replies: 5
Views: 3206

Re: What happened to Custom Fields?

No. Option to add/edit custom fields for products is still available in Gold. You need to do the following steps: 1. Go to Administration > Catalog > Product Templates 2. Add a new product template or edit an existing one 3. At edit product template screen, there is a 'Customer Fields' section. Add ...
by nadeem
Wed Mar 19, 2014 12:04 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Product description HTML editor not working
Replies: 3
Views: 4541

Re: Product description HTML editor not working

This worked for me without any issue. Which build are you using? Also set the custom errors mode="Off" in web.config to get the actual error message and post here.
by nadeem
Fri Nov 29, 2013 1:20 am
Forum: AbleCommerce GOLD
Topic: AC times out on sending e-mail to list
Replies: 6
Views: 3922

Re: AC times out on sending e-mail to list

I have tested with over 25000 subscribers in the e-mail list. It has taken some time but then just worked fine for me. I am unable to reproduce the issue.