Search found 157 matches

by s_ismail
Wed Sep 28, 2011 7:59 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Bypass the shopping cart for some products
Replies: 4
Views: 3294

Re: Bypass the shopping cart for some products

Yes it is possible through customization both in store side and admin side.Once we did the same type of work for a client.
by s_ismail
Sun Aug 07, 2011 9:54 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Adding free product to the cart automatically
Replies: 2
Views: 2304

Re: Adding free product to the cart automatically

In AC, can we customize like if add X product into the cart, i get Y product free and it Y product should be added into the cart with price "0". Moreover, can i also build a relation like if i add 2 quantity of x product into the cart, 4 quantity of Y product should be added like free. We have done...
by s_ismail
Wed Aug 03, 2011 11:15 pm
Forum: Feature Requests
Topic: AutoComplete for the search
Replies: 2
Views: 4606

Re: AutoComplete for the search

Search Auto Complete for AbleCommerce is available now. Check it out
http://blog.plugables.com/ablecommerce- ... ecommerce/
by s_ismail
Wed Aug 03, 2011 10:54 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: user login history
Replies: 2
Views: 2550

Re: user login history

You may check out logged in users by going on 'Administration > Reports > Who Is Online' .
by s_ismail
Mon Jul 11, 2011 2:18 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: CategoryDetailsPage with Add to Cart?
Replies: 2
Views: 3706

Re: CategoryDetailsPage with Add to Cart?

Hello,
Make use of 'ConLib:CategoryGridPage3' Control, i think It is exactly for same purpose.
by s_ismail
Thu Jun 30, 2011 9:17 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: How do you remove a user from a group programmatically?
Replies: 2
Views: 2646

Re: How do you remove a user from a group programmatically?

Hello,
Try this code for removing user from a group

Code: Select all

User user = UserDataSource.Load(userId);
            int index = user.UserGroups.IndexOf(userId, _GroupId);
            if (index > -1) user.UserGroups.DeleteAt(index);
by s_ismail
Thu Jun 30, 2011 9:00 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Help with Email Template
Replies: 3
Views: 3321

Re: Help with Email Template

Yes i have seen there were syntax errors. To fix them you must have nVelocity knowledge. AbleCommerce also provides help to understand nVelocity, Check it out
http://wiki.ablecommerce.com/index.php/NVelocity
by s_ismail
Thu Jun 30, 2011 2:34 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Horizontal Category Navigation
Replies: 2
Views: 2531

Re: Horizontal Category Navigation

Check it out may be it would be helpful for you
viewtopic.php?f=47&t=9150
by s_ismail
Wed Jun 29, 2011 9:47 am
Forum: 7.0 DataPort
Topic: Product to Category Import
Replies: 3
Views: 9147

Re: Product to Category Import HELP!

I think you can accomplish this task without using dataport by going on Admin-->Catalog-->Browse-->Current Product(Product to be associated with multiple categories) and select 'Categories' option from Product Menu, there you can associates current product with multiple categories/sub-categories as ...
by s_ismail
Wed Jun 29, 2011 5:23 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Help with Email Template
Replies: 3
Views: 3321

Re: Help with Email Template

I guess something is missing in your template. Use this one <html> <head> <style type="text/css"> TABLE.Email { width: 640px; padding: 5px; margin: 0px; border: 1px solid #5872CB; } TABLE.Email TH { font-weight: bold; font-size: 12px; color: #ffffff; font-family: Arial, Verdana, Sans-Serif; font-sty...
by s_ismail
Wed Jun 29, 2011 5:08 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: "No email templates are defined..." ??
Replies: 1
Views: 1835

Re: "No email templates are defined..." ??

Well, I don't think copying email templates to store/App_Data/EmailTemplates/1 will work for you because each email template's settings need to be saved in database. I will suggest you to add email templates one by one by going on Administration > Configure > Email > Templates > Add Email Template a...
by s_ismail
Mon Jun 20, 2011 8:05 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: How to replace default "add to cart" with an image
Replies: 12
Views: 9567

Re: How to replace default "add to cart" with an image

It is working properly on my side. I have uploaded this control. Give a try using this.
by s_ismail
Mon Jun 20, 2011 7:47 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: How to replace default "add to cart" with an image
Replies: 12
Views: 9567

Re: How to replace default "add to cart" with an image

Are you using this code in 'CategoryGridPage3.ascx' Control or somewhere else?
by s_ismail
Mon Jun 20, 2011 6:14 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: How to replace default "add to cart" with an image
Replies: 12
Views: 9567

Re: How to replace default "add to cart" with an image

How would this work with this type of code: <asp:Button ID="MultipleAddToBasketButton" runat="server" Text="Add to Cart" OnClick="MultipleAddToBasketButton_Click" ToolTip="Fill in the quantity and Click this to add multiple products to baskt." UseSubmitBehavior="false" /> I've tried what you have a...
by s_ismail
Sat Jun 18, 2011 3:58 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Category Custom Fields UI
Replies: 6
Views: 5064

Re: Category Custom Fields UI

Hello,
I have uploaded Control for displaying Category Custom Fields on Category Pages. Just download it and place inside your ConLib folder and use Like this one
[[ConLib:CategoryCustFieldControl]]
by s_ismail
Sat Jun 18, 2011 2:42 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Exluding Products from Search
Replies: 4
Views: 3194

Re: Exluding Products from Search

Well, I think you need to write a custom query. I have done some basic work for you check it out Go to ConLib SearchPage.ascx.cs and locate this code protected void BindProductList() { Trace.Write(this.GetType().ToString(), "Begin BindProductList"); ProductList.DataSource = ProductDataSource.NarrowS...
by s_ismail
Fri Jun 17, 2011 3:04 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Category Custom Fields UI
Replies: 6
Views: 5064

Re: Category Custom Fields UI

You may use Category Custom fields like this string customField1=string.Empty; CommerceBuilder.Stores.CustomFieldCollection categoryCustomField=CommerceBuilder.Stores.CustomFieldDataSource.LoadForCriteria("ForeignKeyId=CategoryId"); foreach (CommerceBuilder.Stores.CustomField customField in category...
by s_ismail
Thu Jun 16, 2011 9:39 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Exluding Products from Search
Replies: 4
Views: 3194

Re: Exluding Products from Search

If you don't want to show duplicate products anywhere else in store side then on making their visibility to private/hidden will not be accessible anywhere in store side including in search also.
by s_ismail
Thu Jun 16, 2011 3:00 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: How To Export Customer Email Addresses to CSV
Replies: 8
Views: 4884

Re: How To Export Customer Email Addresses to CSV

You can export email addresses by going on Admin-->Marketing-->Email Lists-->ManageList Page(Edit List).
by s_ismail
Tue Jun 14, 2011 2:39 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: How to disable lockout functionality for Admins
Replies: 6
Views: 4052

Re: How to disable lockout functionality for Admins

Go to Conlib/LoginDialog.ascx.cs and locate this code protected void LoginButton_Click(object sender, EventArgs e) { _LastPasswordValue = Password.Text; User loginUser = UserDataSource.LoadForUserName(UserName.Text); if (loginUser != null) { bool stillNeedsCaptcha = false; if ((loginUser.IsAdmin) &&...