Search found 15 matches
- Thu Jan 01, 2009 9:15 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: Unable to add product to cart when adding a Kit / Bundle
- Replies: 2
- Views: 2422
Unable to add product to cart when adding a Kit / Bundle
Is anyone having a problem with the Kit / Bundle component? This is what i did: 1. Created a new product http://www.sportspickstoday.com/extras/new-product.gif 2. Added 3 existing products using the Kit / Bundle screen http://www.sportspickstoday.com/extras/kits-bundles.gif 3. Then opened a browser ...
- Thu Jan 01, 2009 2:44 pm
- Forum: 7.0 Store UI: Layout, Design, Look and Feel
- Topic: How to display approved transactions only in My Account
- Replies: 4
- Views: 3266
Re: How to display approved transactions only in My Account
The solution worked perfectly! Thanks Mazhar.
- Wed Dec 31, 2008 10:53 am
- Forum: 7.0 Store UI: Layout, Design, Look and Feel
- Topic: How to display approved transactions only in My Account
- Replies: 4
- Views: 3266
Re: How to display approved transactions only in My Account
I'm refering to page that appears when you login as a registered user... the MyAccounts.aspx page. That page displays ALL transactions, Payment Authorized and Failed Transactions. I'd like to display only the successfully Payment Authorized transactions. Also, How do you change the number of orders ...
- Tue Dec 30, 2008 6:50 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: How to use subscriptions / bundles
- Replies: 0
- Views: 2719
How to use subscriptions / bundles
I'm having difficulty setting up a way to sell an information product using subscription/bundle. The idea is straight forward... The website offers daily sports picks to visitors for X amount each. If the transaction is approved, then the MyAccount.aspx page displays the information purchased (which...
- Tue Dec 30, 2008 11:07 am
- Forum: 7.0 Store UI: Layout, Design, Look and Feel
- Topic: Adding description text to confirmation and my account pages
- Replies: 8
- Views: 5115
Re: Adding description text to confirmation and my account pages
I'm an idiot... I meant the if statement to look at orders.Status field: public string GetMessage(Object dataItem) { CommerceBuilder.Products.Product product = (CommerceBuilder.Products.Product)dataItem; if (ORDERS.STATUS FIELD != "Payment Authorized") return product.ExtendedDescription; return "Thi...
- Tue Dec 30, 2008 10:31 am
- Forum: 7.0 Store UI: Layout, Design, Look and Feel
- Topic: How to display approved transactions only in My Account
- Replies: 4
- Views: 3266
How to display approved transactions only in My Account
Is it possible to display the approved transactions only on /Members/MyAccount.aspx. Also where can I modify the number of transactions displayed on this page?
- Tue Dec 30, 2008 10:10 am
- Forum: 7.0 Store UI: Layout, Design, Look and Feel
- Topic: Adding description text to confirmation and my account pages
- Replies: 8
- Views: 5115
Re: Adding description text to confirmation and my account pages
Can anyone help me build a simple if statement to display on MyAccountPage.ascx?
if (Product.ExtendedDescription =! "Payment Authorized") {
#Eval("Product.ExtendedDescription") // write this from database
}
else
{
"This transaction failed";
}
if (Product.ExtendedDescription =! "Payment Authorized") {
#Eval("Product.ExtendedDescription") // write this from database
}
else
{
"This transaction failed";
}
- Tue Dec 30, 2008 8:54 am
- Forum: 7.0 Store UI: Layout, Design, Look and Feel
- Topic: Adding description text to confirmation and my account pages
- Replies: 8
- Views: 5115
Re: Adding description text to confirmation and my account pages
Perfect! Thanks.
- Tue Dec 30, 2008 8:15 am
- Forum: 7.0 Store UI: Layout, Design, Look and Feel
- Topic: Adding description text to confirmation and my account pages
- Replies: 8
- Views: 5115
Re: Adding description text to confirmation and my account pages
Thanks Mazah, but that's not what I meant. I want to display the Products.ExtendedText field from the database which is the "More text" information for the product.
- Mon Dec 29, 2008 6:58 pm
- Forum: 7.0 Store UI: Layout, Design, Look and Feel
- Topic: Adding description text to confirmation and my account pages
- Replies: 8
- Views: 5115
Adding description text to confirmation and my account pages
Does anyone know how to add the more "details text" to the order confirmation pages as well as the my account page?


Thanks.


Thanks.
- Sat Dec 20, 2008 3:03 pm
- Forum: 7.0 Store UI: Layout, Design, Look and Feel
- Topic: How to show a list of manufactures w/ description
- Replies: 2
- Views: 2601
How to show a list of manufactures w/ description
Is there a way to show a list of manufactures w/ description? Similar to how the Categories are displayed in simplecategorylist cronlib?
- Sat Dec 20, 2008 2:51 pm
- Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
- Topic: How to display error message on failed transactions
- Replies: 0
- Views: 2647
How to display error message on failed transactions
Hi, After submitting bogus payment information (correct cc # with bogus exp date and cvv), i get the receipt.aspx showing my receipt saying the transaction failed! My gateway is Authorize.net and I've configured the gateway as Authorize only and Authorize and Capture. Same results each time. How do ...
- Sat Dec 20, 2008 12:59 pm
- Forum: 7.0 Store UI: Layout, Design, Look and Feel
- Topic: How to customize Basket display?
- Replies: 3
- Views: 3519
Re: How to customize Basket display?
The issue seems to be that the CssClass="totalRow" is indicating 5 collumns instead of 3.
- Sat Dec 20, 2008 12:26 pm
- Forum: 7.0 Store UI: Layout, Design, Look and Feel
- Topic: How to customize Basket display?
- Replies: 3
- Views: 3519
Re: How to customize Basket display?
Not exactly. This is what i get:
Remove SKU code: Shows Item, Tax, Qty and Price
Remove SKU and Tax code: Shows Item, Each and Price. BUT... the subtotal footer is not aligned.
I just can't figure out how to get Each, Price and the subtotal label and total price to display correctly.
Remove SKU code: Shows Item, Tax, Qty and Price
Remove SKU and Tax code: Shows Item, Each and Price. BUT... the subtotal footer is not aligned.
I just can't figure out how to get Each, Price and the subtotal label and total price to display correctly.
- Fri Dec 19, 2008 12:39 pm
- Forum: 7.0 Store UI: Layout, Design, Look and Feel
- Topic: How to customize Basket display?
- Replies: 3
- Views: 3519
How to customize Basket display?
I would like the my basket page to NOT display the SKU or QTY collumns on the basket page. If I remove the code from the basket.ascx page (line 57-63), then the tax collumn appears and we don't need that field to appear either. Any suggestions? http://www.sportspickstoday.com/extras/my-basket.gif Th...