Search found 157 matches

by s_ismail
Fri Jul 02, 2010 6:02 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: How to default Shippable field to NO on Add Product page?
Replies: 1
Views: 1631

Re: How to default Shippable field to NO on Add Product page?

just locate this code in AddProduct.aspx.cs

Code: Select all

SetSelectedItem(IsShippable, _Product.ShippableId.ToString());
and replace with this

Code: Select all

SetSelectedItem(IsShippable, "0");
by s_ismail
Sat Jun 12, 2010 7:09 am
Forum: Feature Requests
Topic: Make 'Hide Price' really hide the price!
Replies: 23
Views: 22753

Re: Make 'Hide Price' really hide the price!

You need to control it everywhere where price is displayed.. Give a try by this one. Locate this code in 'buyproductdialog.ascx.cs' if (!_Product.UseVariablePrice) { trOurPrice.Visible = true; trVariablePrice.Visible = false; } and replace with this one if (!_Product.UseVariablePrice) { trOurPrice.V...
by s_ismail
Sat Jun 12, 2010 6:35 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Change Shopping cart warning message
Replies: 4
Views: 2795

Re: Change Shopping cart warning message

Sorry i don't understand about what you are talking , i need more detail to clarify what you want to modify.:(
by s_ismail
Sat Jun 12, 2010 3:10 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: How to gt the product image name
Replies: 4
Views: 3601

Re: How to gt the product image name

You can load current product Image as

Code: Select all

  int _ProductId = AlwaysConvert.ToInt(Request.QueryString["ProductId"]);
        Product _Product = ProductDataSource.Load(_ProductId);
        if (_Product != null)
        {
                string imageUrl=_Product.ImageUrl;

       }
        {
.
by s_ismail
Fri Jun 11, 2010 8:03 am
Forum: Feature Requests
Topic: Add a DropDown “How did you hear about us” to Checkout
Replies: 4
Views: 5995

Re: Add a DropDown “How did you hear about us” to Checkout

You need to pick selected option from where you saved during checkout.e-g customer select an option 'Friend' and this value is saved db table 'ac_UserSettings' then on admin site load this selected value from db table 'ac_UserSettings' and display it.
by s_ismail
Fri Jun 11, 2010 6:01 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Change Shopping cart warning message
Replies: 4
Views: 2795

Re: Change Shopping cart warning message

Locate this code in 'basket.ascx.cs' protected void UpdateButton_Click(object sender, EventArgs e) { BasketHelper.SaveBasket(BasketGrid); BindBasketGrid(); } protected void CheckoutButton_Click(object sender, EventArgs e) { BasketHelper.SaveBasket(BasketGrid); List<string> basketMessages; bool baske...
by s_ismail
Fri Jun 11, 2010 5:33 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Shipping if number of items purchased is greater than 3
Replies: 1
Views: 1556

Re: Shipping if number of items purchased is greater than 3

yes i think you need to write custom code to achieve this functionality because there is no such shipping method which provides facility to charge different shipping amount on different quantity.
by s_ismail
Thu Jun 10, 2010 3:29 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Dashboard - Page views by month not reporting
Replies: 3
Views: 2133

Re: Dashboard - Page views by month not reporting

On Admin Dashboard Page Page Views by month is also supported in 7.0.4.I think you might have customized your code somewhere, So replace respective files with original files in admin.
by s_ismail
Wed Jun 09, 2010 8:18 am
Forum: Feature Requests
Topic: Make 'Hide Price' really hide the price!
Replies: 23
Views: 22753

Re: Make 'Hide Price' really hide the price!

Replace with this one

Code: Select all

<uc:ProductPrice ID="OurPrice" runat="server" EnableDefaultKitProducts="false"  Visible='<%# !Token.Instance.User.IsAnonymous %>' /> 
by s_ismail
Tue Jun 08, 2010 5:12 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Variant Level Discounts
Replies: 6
Views: 3529

Re: Variant Level Discounts

I don't think discount is supported for specific variants only in AC , it just applied on product quantity or total price.
by s_ismail
Tue Jun 08, 2010 3:39 am
Forum: Feature Requests
Topic: Make 'Hide Price' really hide the price!
Replies: 23
Views: 22753

Re: Make 'Hide Price' really hide the price!

You need to put this Check Visible='<%# !Token.Instance.User.IsAnonymous %>' everywhere manually where product price is displayed. But if you need only in OnePageCheckout.ascx locate this code <asp:GridView ID="BasketGrid" runat="server" AutoGenerateColumns="False" ShowFooter="False" Width="100%" Sk...
by s_ismail
Mon Jun 07, 2010 8:54 am
Forum: 7.0 DataPort
Topic: Dataport upload no product available
Replies: 4
Views: 4416

Re: Dataport upload no product available

Make sure your CSV file is in proper format as required by the dataport.
Have a looks at this link might be it will be helpful for you
http://wiki.ablecommerce.com/index.php/ ... riants_CSV.
by s_ismail
Mon Jun 07, 2010 8:42 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Advance Search Customization Help
Replies: 1
Views: 1523

Re: Advance Search Customization Help

Yes you can do it by writing a custom query like this one
e-g

Code: Select all

ProductCollection products=ProductDataSoruce.LoadForCriteria(String.Format("weight={0}",WeightTextBox.Text)
ProductList.DataSoruce=products;
ProductList.DataBind();
by s_ismail
Mon Jun 07, 2010 3:17 am
Forum: Feature Requests
Topic: Make 'Hide Price' really hide the price!
Replies: 23
Views: 22753

Re: Make 'Hide Price' really hide the price!

Where you want to show/hide products prices if in CategoryGridPage.ascx then locate this code <uc:ProductPrice ID="Price" runat="server" Product='<%#Container.DataItem%>' ShowRetailPrice="true" /> and replace with this code <uc:ProductPrice ID="Price" runat="server" Visible='<%# !Token.Instance.User...
by s_ismail
Fri Jun 04, 2010 6:11 am
Forum: 7.0 DataPort
Topic: Uploading Template Data to the AC Database
Replies: 1
Views: 2882

Re: Uploading Template Data to the AC Database

Hello, i think Able Commerce data port also support to upload products in XML format but it should be build in its required format. Recently we have done such type of data migration to AC which also preserve the Ids e-g product Id also as well as other things like featured products,product variants ...
by s_ismail
Fri Jun 04, 2010 5:59 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: How to copy default files without losing customized ones?
Replies: 2
Views: 2758

Re: How to copy default files without losing customized ones?

I will recommend you to first install SVN and AC on your local machine then work there instead of live site then on completing work on local machine ,first take a backup of your live site on your live server then upload/replace your respective files only.
by s_ismail
Thu Jun 03, 2010 3:29 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Advice On How To Customize ConLib:CategoryGridPage
Replies: 5
Views: 3702

Re: Advice On How To Customize ConLib:CategoryGridPage

Locate this section in your categoryGridPage.ascx <asp:DataList ID="ProductList" runat="server" RepeatColumns="3" RepeatDirection="Horizontal" Width="100%" OnItemDataBound="ProductList_ItemDataBound" DataKeyField="ProductId" CssClass="catalog" EnableViewState="false" HorizontalAlign="left"> <ItemSty...
by s_ismail
Wed Jun 02, 2010 4:00 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Updating OrderStatusId
Replies: 4
Views: 2555

Re: Updating OrderStatusId

did u customize your original code anywhere in your store?
by s_ismail
Fri May 28, 2010 4:03 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: How to attach a document page
Replies: 1
Views: 2210

Re: How to attach a document page

You can upload it in description as an Image by using HTML editor which is with 'Description' label in product details Page in the admin.
by s_ismail
Wed May 26, 2010 9:32 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: CHanging Display of Basket Items
Replies: 3
Views: 2350

Re: CHanging Display of Basket Items

Check this out ,may be i will help you out
viewtopic.php?t=13571
by s_ismail
Tue May 25, 2010 2:59 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Help With URL Rewrite Provider API
Replies: 3
Views: 3007

Re: Help With URL Rewrite Provider API

Have a look at this thread, might be it will help you out.
viewtopic.php?p=51388
by s_ismail
Mon May 24, 2010 3:22 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: How to find the products that have accessories...
Replies: 2
Views: 1852

Re: How to find the products that have accessories...

I don't think so that there is any short cut to find only those products which have accessories but it can be achieve by customization.