Search found 23 matches

by markc
Mon Sep 20, 2010 7:37 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Shipping based on the product
Replies: 3
Views: 2909

Shipping based on the product

We want to charge $10 shipping per product for example a PC.
If the product for example is screws we charge $4 Shipping.
Is there a way to attach the shipping to a product?

Thanks
Mark
by markc
Wed Sep 15, 2010 9:59 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Buy a product using Bank Transfer
Replies: 3
Views: 2795

Re: Buy a product using Bank Transfer

Thanks for the replies.


Mark
by markc
Tue Sep 14, 2010 7:18 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Buy a product using Bank Transfer
Replies: 3
Views: 2795

Buy a product using Bank Transfer

In the admin area we can record a payment sent in by check or some other offline method. On the web site there is Payment Methods for Credit/Debit Card, PayPal and Gift Certificate. Is there a way we can add Bank Transfer to this radio button list. 1. So that if the user selects Bank Transfer. 2. Th...
by markc
Sat Aug 28, 2010 6:44 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Set value in dropdown list
Replies: 7
Views: 4871

Re: Set value in dropdown list

Hi Mazhar, The AutoPostBack=”true” has been set up in the ProductHelper.cs // CREATE A DROPDOWN FOR THE OPTIONS DropDownList aspOptions = new DropDownList(); RequiredFieldValidator aspOptionsValidator = new RequiredFieldValidator(); aspOptions.ID = "option" + i; spOptions.AutoPostBack = true; When t...
by markc
Thu Aug 26, 2010 11:06 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Set value in dropdown list
Replies: 7
Views: 4871

Re: Set value in dropdown list

Hi,

When I select the value in the dropdown list the page is not refresh so my price based on the size in the options is not changed.
Anyone know how to refresh the page?


Thanks

Mark
by markc
Thu Aug 26, 2010 1:43 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Validate a dropdownlist in a Template
Replies: 1
Views: 1746

Validate a dropdownlist in a Template

Hi,

How could I validate a dropdownlist in a Template?


Thanks

Mark
by markc
Tue Aug 24, 2010 12:24 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Set value in dropdown list
Replies: 7
Views: 4871

Re: Set value in dropdown list

Hi All,

Thanks for the help.

This sorted the error.

inputControl.ClearSelection();



Cheers

Mark
by markc
Tue Aug 24, 2010 12:09 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Set value in dropdown list
Replies: 7
Views: 4871

Re: Set value in dropdown list

Hi, Here is the code protected void txtSize_TextChanged(object sender, EventArgs e) { int sizeValue = CalculateMeasurements(_Product, txtSize.Text); DropDownList inputControl = (DropDownList)PageHelper.RecursiveFindControl(this, "option0"); //Hardcoded to test ListItem item = inputControl.Items.Find...
by markc
Mon Aug 23, 2010 7:40 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Set value in dropdown list
Replies: 7
Views: 4871

Set value in dropdown list

Hi, I have created an option “Size” for my product which generates a dropdown list which is hidden within a PlaceHolder control on the product page. I have created a custom TextBox on the product page when the user enters a value for example 480 on TextChanged the txtWidth_TextChanged is fired and i...
by markc
Tue Jul 27, 2010 11:16 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Product entered Option but don’t want it as Variant
Replies: 1
Views: 1832

Product entered Option but don’t want it as Variant

Hi,

I have created Options and Variants for the products we sell.
This is to create a product matrix which includes Width, Height and then a price entered against each variant.
We have also entered an Option for Color but we do not want this to appear as a Variant.
How could we do this?


Thanks
Mark
by markc
Wed Jul 21, 2010 8:43 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Display differnet price based on size entered
Replies: 2
Views: 2330

Re: Display differnet price based on size entered

Hi Mazhar, I have used Options and Variants to create the grid with the different sizes then in Manage Variants i put the prices against each size. For example Width 450 and the Height 750 with a price of $12 The customers can enter the size Width 450 and the Height 630 In the grid the product size ...
by markc
Wed Jul 21, 2010 2:00 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Display differnet price based on size entered
Replies: 2
Views: 2330

Display differnet price based on size entered

Hi, I have create variants for a product that works like a grid of choices. Our products have different prices bases on the size selected. For example Product one matrix. If the Width 450 and Height 600 the price is $10. Width 450 600 750 Height 600 $10 $15 $22 750 $12 $16 $23 900 $13 £17 $24 On the...
by markc
Wed Jul 14, 2010 11:31 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Can’t login in, no errors displayed
Replies: 5
Views: 3841

Re: Can’t login in, no errors displayed

Hi Mike,

The encryption key on the development box or local pc was not set.

Thanks

Mark
by markc
Wed Jul 14, 2010 10:56 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Can’t login in, no errors displayed
Replies: 5
Views: 3841

Re: Can’t login in, no errors displayed

Hi Mike, The encryption key on the development box was not set. How could I make the encryption key match on the development box and local installs? When we set up Able we installed it on the development box. Then we done a clean install on a local PC and pointed the connection string (this was encr...
by markc
Wed Jul 14, 2010 9:33 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Can’t login in, no errors displayed
Replies: 5
Views: 3841

Can’t login in, no errors displayed

For developing on our local pc’s we have installed Able on our local pc’s and connected to the database on the DEV server, when we do this we can’t login to the admin area. We go through the process of login but no errors are displayed and the LOGIN button does not change to LOGOUT. We can login to ...
by markc
Mon Jul 12, 2010 6:59 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: How to set up able for development
Replies: 1
Views: 3063

How to set up able for development

Hi, What is the best way to set up Able for Development? The way I would normally set up a Application: Developers work on the local PC with files checked out of SVN. After they are happy with the build they deploy to the DEV server for testing. Would you have one main VS solution and have all the p...
by markc
Mon Jun 28, 2010 12:34 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Product pricing matrix
Replies: 2
Views: 2398

Re: Product pricing matrix

Thanks
by markc
Sat Jun 26, 2010 5:49 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Product pricing matrix
Replies: 2
Views: 2398

Product pricing matrix

Our products have different prices bases on the size selected is there a way of creating a pricing matrix in AC ? For example Product one matrix. If the Width 450 and the Height 600 the price is $10. Width 450 600 750 Height 600 $10 $15 $22 750 $12 $16 $23 900 $13 £17 $24 Thanks Mark
by markc
Sun Jun 20, 2010 6:16 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Connection string
Replies: 1
Views: 1922

Connection string

When you are installing Able Commerce what is the parameters you need for the connection string.
For example what parameters would I need in the connection string below:

add key="DataConnection" value="data source=local;initial catalog=AbleCommerce;user id=sa;pwd=test99"


Thanks

Mark
by markc
Wed Jun 16, 2010 11:08 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: SQL Express 2008
Replies: 2
Views: 2740

SQL Express 2008

We are looking to have the Database on the Dev server with three users connecting to it remotely using Client Tools. There is some Customization require for the sites.

Can we do this using SQL Express 2008?

Thanks

Mark
by markc
Wed Jun 16, 2010 9:32 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: SQL Server versions
Replies: 1
Views: 2446

SQL Server versions

What is the best version of SQL Server to use?
We are looking to combine multi sites in the same Database.
What are the pros and cons?

Thanks

Mark
by markc
Fri Jun 11, 2010 1:44 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Display prices including Taxes
Replies: 1
Views: 1897

Display prices including Taxes

We are trying to get the system to display prices including Taxes. We are in Australia and therefore need a 10% Tax on everything. We want to enter a price of $29 for a product and this includes 10% Tax. For example if I enter a product with a price $26.4 and add 10% Tax I end up with $29.04 I want ...
by markc
Thu Jun 10, 2010 6:39 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Shipping if number of items purchased is greater than 3
Replies: 1
Views: 2046

Shipping if number of items purchased is greater than 3

If the shipping for our store has 1-3 items the cost is $35 we can use the Vary by Quantity.
If the amount of items is greater than 3 we want to charge $10 per item how can we do this?

Do we have to customize the code?

Thanks
Mark