Search found 157 matches

by s_ismail
Tue Jun 14, 2011 2:32 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: How to disable lockout functionality for Admins
Replies: 6
Views: 4079

Re: How to disable lockout functionality for Admins

Yes it is possible but i think you have to handle this through code customization.
by s_ismail
Tue Jun 14, 2011 1:54 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: How to disable lockout functionality for Admins
Replies: 6
Views: 4079

Re: How to disable lockout functionality for Admins

Hi Sunil,
Have you checked Admin-->Configure-->Security-->Password Policy?
by s_ismail
Mon Jun 13, 2011 4:39 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Migrating from able commerce 7.0.7 to able commerce 7.0.6
Replies: 3
Views: 2320

Re: Migrating from able commerce 7.0.7 to able commerce 7.0.6

Well, I think you need to do this manually by comparing (Using any tool like Win Merge) able commerce 7.0.7 files with original able commerce 7.0.6. If you find any change in both files then replace that specific file with able commerce 7.0.6 file as well.
by s_ismail
Mon Jun 13, 2011 4:28 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: How to refresh the CAPTCHA image for each password attempt
Replies: 2
Views: 3699

Re: How to refresh the CAPTCHA image for each password attempt

Yes it is possible. Locate this code in Conlib/LoginDialog.ascx.cs InvalidLogin.ErrorMessage += " You have {0} tries remaining."; InvalidLogin.ErrorMessage = String.Format(InvalidLogin.ErrorMessage, remainingTries); InvalidLogin.IsValid = false; and replace with this code InvalidLogin.ErrorMessage +...
by s_ismail
Thu Jun 09, 2011 3:05 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: RESOLVED: Category Index/Landing page?
Replies: 3
Views: 4097

Re: Category Index/Landing page?

You may accomplish this task by creating a user control in conlib folder and insert an asp PlaceHolder control in it. On clicking on specific category read contents of html file and insert into PlaceHolder like this one string path = "Html File Path"; if (File.Exists(path)) { StreamReader sr = new S...
by s_ismail
Tue Mar 01, 2011 7:41 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: How do I change the breadcrumb ">" color?
Replies: 6
Views: 5948

Re: How do I change the breadcrumb ">" color?

You can change color of symbol in '.breadCrumbPanel ' css class like this .breadCrumbPanel { background:#FFFFFF url(images/CategoryBreadCrumbsEdge.gif) no-repeat left top; padding: 8px 0;color:'YOUR_COLOR_HERE'; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px; font-weight:lighter; ...
by s_ismail
Tue Mar 01, 2011 7:21 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Can't checkout?!
Replies: 3
Views: 2473

Re: Can't checkout?!

Can you provide error details from App log file in the App_Data\Logs directory?
by s_ismail
Mon Feb 28, 2011 6:18 am
Forum: 7.0 DataPort
Topic: need help with dataport
Replies: 5
Views: 5052

Re: need help with dataport

good peeps wrote:When I went to upload again, all of the items went to orphaned.
Usually products are marked as orphaned if product don't have any category mentioned, So i guess you are missing something regarding categories.
by s_ismail
Mon Feb 28, 2011 6:12 am
Forum: 7.0 DataPort
Topic: need help with dataport
Replies: 5
Views: 5052

Re: need help with dataport

Able commerce provides a complete guideline how to use data port. Check this out
http://wiki.ablecommerce.com/index.php/DataPort_Utility
by s_ismail
Mon Feb 28, 2011 5:53 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Labels for Pricing Rules
Replies: 1
Views: 1758

Re: Labels for Pricing Rules

Have a look at this free add-on, i think it is exactly what you want.
http://blog.plugables.com/ablecommerce- ... erce-free/ .
by s_ismail
Mon Feb 28, 2011 3:33 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Install issue
Replies: 7
Views: 4012

Re: Install issue

Check this out. May be it would be helpful for you.
http://winservermart.com/HowTo/HTTP_Err ... IIS_7.aspx.
by s_ismail
Mon Feb 07, 2011 10:53 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Breadcrumbs - Remove Last Link
Replies: 2
Views: 5252

Re: Breadcrumbs - Remove Last Link

Give a try by this code In CategoryBreadCrumbs.ascx replace ItemTemplate with this one <ItemTemplate> <asp:HyperLink ID="BreadCrumbsLink" runat="server" NavigateUrl='<%#UrlGenerator.GetBrowseUrl((int)Eval("catalogNodeId"), (string)Eval("name"))%>' Text='<%#Eval("Name")%>' Visible='<%# !IsLastItem() ...
by s_ismail
Mon Feb 07, 2011 10:33 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Hide same product from multiple vendors
Replies: 3
Views: 2250

Re: Hide same product from multiple vendors

Well i think you need to control it programatically on each control where vendor is displayed.
by s_ismail
Tue Dec 21, 2010 8:44 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Is there a way to provide discounts on total cart price
Replies: 1
Views: 1603

Re: Is there a way to provide discounts on total cart price

You may apply a order coupon on total price to provide discount.
Have a look at this thread may be it will be helpful for you
viewtopic.php?f=42&t=9030
by s_ismail
Wed Dec 15, 2010 8:33 am
Forum: Feature Requests
Topic: Add Lines numbers to products displayed in Catalog Display
Replies: 2
Views: 3432

Re: Add Lines numbers to products displayed in Catalog Display

Try this code Locate this code in browse.aspx <asp:GridView ID="CGrid" runat="server" AutoGenerateColumns="False" Width="100%" DataKeyNames="CatalogNodeId,CatalogNodeType" AllowSorting="False" AllowPaging="True" PageSize="40" OnRowCommand="CGrid_RowCommand" OnRowDataBound="CGrid_RowDataBound" SkinID...
by s_ismail
Wed Dec 15, 2010 6:02 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Description on Category Grid Page
Replies: 4
Views: 6194

Re: Description on Category Grid Page

I guess you are missing literal control with id 'cdesc' in your customcategorygridpage.ascx file. If you want to use literal with id 'cdeskc' then you must have a literal control instead of Categorydescription literal
LIke this one

Code: Select all

<asp:Literal ID="cdesc" runat="server"></asp:Literal> 
by s_ismail
Wed Dec 15, 2010 5:50 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Remove thumbnails from recently viewed & more items, etc.
Replies: 4
Views: 6157

Re: Remove thumbnails from recently viewed & more items, etc.

For Recently Viewed Items locate this code in ConLib /RecentlyViewed.ascx file <asp:Image ID="Thumbnail" runat="server" CssClass="PIVThumnail"/> and replace with this one <asp:Image ID="Image1" runat="server" Visible="false" CssClass="PIVThumnail"/> For More Items locate this code in ConLib/MoreCate...
by s_ismail
Tue Dec 14, 2010 10:05 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Remove thumbnails from recently viewed & more items, etc.
Replies: 4
Views: 6157

Re: Remove thumbnails from recently viewed & more items, etc.

You can hide/remove products thumbnails in these controls in ConLib /RecentlyViewed.ascx and ConLib/MoreCategoryItems.
by s_ismail
Wed Dec 08, 2010 5:09 am
Forum: Feature Requests
Topic: Tasks: change status to...
Replies: 2
Views: 3534

Re: Tasks: change status to...

First you need to add a new order status from Admin-->Order Statuses-->Add Order Status like 'order in process' then go to order detail page-->Tasks-->DropDown list and select 'Change to order in process'.
by s_ismail
Tue Dec 07, 2010 4:50 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Bad error if user doesn't exist in ac_Users...?
Replies: 4
Views: 2765

Re: Bad error if user doesn't exist in ac_Users...?

Give a try by adding this code in your page

Code: Select all

 ValidateRequest="true" 
If your page is Login.aspx then it would be like this one

Code: Select all

 <%@ Page Language="C#" MasterPageFile="~/Layouts/Scriptlet.master" Inherits="CommerceBuilder.Web.UI.AbleCommercePage" Title="Login or Register" ValidateRequest="true" %>
by s_ismail
Mon Dec 06, 2010 2:59 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Checkout Page for Anonymous Users
Replies: 5
Views: 4097

Re: Checkout Page for Anonymous Users

susan@thinriver.com wrote: I am on version 7.0.5. Where can I locate the build#?
You can find build number in Admin-->Help-->About Able Commerce as well as any admin page's footer area, it will be like this 'AbleCommerce 7.0.5 build 14135'.
by s_ismail
Fri Dec 03, 2010 4:43 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Add to Cart Button
Replies: 3
Views: 4726

Re: Add to Cart Button

In which page you want to show 'Add to cart' button?
by s_ismail
Fri Dec 03, 2010 4:08 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Register Dialog Submit Button and redirecting it
Replies: 1
Views: 3417

Re: Register Dialog Submit Button and redirecting it

You just need to add this code

Code: Select all

Response.Redirect(ResolveClientUrl("~/Members/MyAddressBook.aspx"));
Like this

Code: Select all

 //REDIRECT TO APPROPRIATE PAGE
           //FormsAuthentication.RedirectFromLoginPage(userName, false);
           Response.Redirect(ResolveClientUrl("~/Members/MyAddressBook.aspx"));