Search found 149 matches

by m_plugables
Thu Apr 10, 2008 5:28 am
Forum: Good Reference Posts
Topic: Save And Close button for Email Templates
Replies: 1
Views: 3659

Save And Close button for Email Templates

When editing the Email templates there should be a Save And Close button like we have for products. Currently we have to reopen the Email template each time when testing the changes.
by m_plugables
Thu Apr 10, 2008 5:20 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Possible to suppress SHIPPING Quantity?
Replies: 13
Views: 6832

Re: Possible to suppress SHIPPING Quantity?

Find this line of code in the ConLib/OnPageCheckout.ascx file <asp:GridView ID="BasketGrid" runat="server" AutoGenerateColumns="False" ShowFooter="False" Width="100%" SkinID="PagedList"> and modify it to look like this one <asp:GridView ID="BasketGrid" runat="server" AutoGenerateColumns="False" Show...
by m_plugables
Thu Apr 10, 2008 4:02 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Breadcrumbs not rendering in Checkout process
Replies: 6
Views: 4678

Re: Breadcrumbs not rendering in Checkout process

You can place the BreedCrumbs on the Checkout pages with some small modification to your scriptlet. Modify the following scriptlet App_Data\Scriptlets\Default\Layout\(Any Active Layout htm file) and make it look like [[layout:header]] <div id="outerContentWrapper"> <div id="innerContentWrapper"> <ta...
by m_plugables
Thu Apr 10, 2008 2:29 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Category Grid - Display only category images
Replies: 6
Views: 4458

Re: Category Grid - Display only category images

If i found the solution i will post the code. For the time being i am unable to put my ConLib/CategoryGrid control at the home page because there is something wrong with Editor Zone. It doesn't apply my settings when i try to put the CategoryGrid in content section of home page.
by m_plugables
Thu Apr 10, 2008 1:45 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Multipart Email notices
Replies: 4
Views: 3627

Re: Multipart Email notices

You can use the Send HTML Mail check box on the Edit Email Template page to send text or html mail.
by m_plugables
Thu Apr 10, 2008 1:37 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Possible to suppress SHIPPING Quantity?
Replies: 13
Views: 6832

Re: Possible to suppress SHIPPING Quantity?

Is there a simple way to extend this conditional for the purpose of suppressing those entire rows in the grid view... meaning the TAX and SHIPPING lines entirely? Yes you can do it. For this you have to write an event handler against the the GridView's OnRowCreated event. I will try to post the sam...
by m_plugables
Thu Apr 10, 2008 1:21 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Edit Page Mode:Editor Zone
Replies: 4
Views: 3590

Re: Edit Page Mode:Editor Zone

I also got same problems when trying to put the CategoryGrid control in the Home page Content section using the Editor Zone. In my case when i try to apply the new settings i does not save these changes and keeps the previous settings. Its a strange behavior. may be the Editor Zone checking its con...
by m_plugables
Thu Apr 10, 2008 1:02 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Dataport Installation
Replies: 2
Views: 2437

Re: Dataport Installation

Install Dataport on your personal system and use the following url
to connect with server.

Code: Select all

http://(Your Server Address)/ClientApi/ClientApiService.ashx
by m_plugables
Wed Apr 09, 2008 5:26 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Possible to suppress SHIPPING Quantity?
Replies: 13
Views: 6832

Re: Possible to suppress SHIPPING Quantity?

The following line was not correct basketItem = BasketItemDataSource.Load(AlwaysConvert.ToInt(basketItem)); It should be basketItem = BasketItemDataSource.Load(AlwaysConvert.ToInt(basketItemId)); So the method should be like protected bool ShowQuantity(Object basketItemId) { BasketItem basketItem = ...
by m_plugables
Wed Apr 09, 2008 5:20 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Possible to suppress SHIPPING Quantity?
Replies: 13
Views: 6832

Re: Possible to suppress SHIPPING Quantity?

Shippable and Taxable are true for products also. The check on basketItem.Shippable and basketItem.Taxable is not correct.
Thanks for correction. :)
There is still a minor problem in the code. I will post the latest code in a while.
by m_plugables
Wed Apr 09, 2008 3:39 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Edit Page Mode:Editor Zone
Replies: 4
Views: 3590

Re: Edit Page Mode:Editor Zone

I also got same problems when trying to put the CategoryGrid control in the Home page Content section using the Editor Zone. In my case when i try to apply the new settings i does not save these changes and keeps the previous settings. Its a strange behavior.
by m_plugables
Wed Apr 09, 2008 3:01 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Possible to suppress SHIPPING Quantity?
Replies: 13
Views: 6832

Re: Possible to suppress SHIPPING Quantity?

Actually, we're just trying to suppress the QTY display for the line item that appears for SHIPPING or TAX in ~/Checkout/Default.aspx Edit ConLib/OnePageCheckout.ascx file and find the following line of code <%# Eval("Quantity") %> and replace it with following lines of code <span id="QtyContainer"...
by m_plugables
Tue Apr 08, 2008 10:24 am
Forum: Feature Requests
Topic: search on merchant side
Replies: 27
Views: 31978

Re: search on merchant side

Product Sku can make this search more accurate and easy.
by m_plugables
Tue Apr 08, 2008 10:16 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Category Grid - Display only category images
Replies: 6
Views: 4458

Re: Category Grid - Display only category images

I think that the CategoryGrid control can work at a place where there must be some category selected like the Category search page. In order to put it at home page you may be in need to manually set the category id to 0 so that it can list the root categories.
by m_plugables
Tue Apr 08, 2008 6:10 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Possible to suppress SHIPPING Quantity?
Replies: 13
Views: 6832

Re: Possible to suppress SHIPPING Quantity?

And for email you have to put some N-Velocity code. First of all navigate to the Configure -> E-mail -> Templates page and then edit the Email template you want to modify. Locate the following lines of code $orderItem.Quantity and make them look like the code below #if (!$orderItem.Shippable) $order...
by m_plugables
Tue Apr 08, 2008 5:55 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Possible to suppress SHIPPING Quantity?
Replies: 13
Views: 6832

Re: Possible to suppress SHIPPING Quantity?

As for as i understand you want to hide the quantity information for shippable items. If this is the case then you can do it like this. Edit the ConLib/Basket.ascx file and locate the following line of code <cb:updowncontrol MinValue="0" id="Quantity" runat="server" DownImageUrl="~/images/down.gif" ...
by m_plugables
Mon Apr 07, 2008 10:45 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Delete Product Reviews
Replies: 2
Views: 2148

Re: Delete Product Reviews

The missing code could be something like this. Edit the ConLib/MyProductReviewsPage.ascx and locate the ReviewsGrid control and add this information to it OnRowCommand="ReviewsGrid_RowCommand" . After this modification it should look like <asp:GridView ID="ReviewsGrid" OnRowCommand="ReviewsGrid_RowC...
by m_plugables
Mon Apr 07, 2008 10:14 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Delete Product Reviews
Replies: 2
Views: 2148

Re: Delete Product Reviews

It means that a user is unable to delete his/her reviews. This should be fixed
by m_plugables
Mon Apr 07, 2008 9:26 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Compilation Error
Replies: 1
Views: 1815

Re: Compilation Error

It seems that you have some older version of the CommerceBuilder.dll in your Bin folder.
by m_plugables
Mon Apr 07, 2008 8:53 am
Forum: Good Reference Posts
Topic: Customers Who Bought this Also Bought xyz control
Replies: 1
Views: 4853

Customers Who Bought this Also Bought xyz control

OK here it is. This control was high in demand. ‘Customers who bought this product also bought xyz’ On the product page this control will show the products that were bought along with this product by the same customer. The control provides some properties to enable/disable certain features or to cha...
by m_plugables
Mon Apr 07, 2008 3:45 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Remove alphabetical ordering in category list
Replies: 5
Views: 4374

Re: Remove alphabetical ordering in category list

Well although the above code works but a much better solution is to modify the sorting options drop down list. You can use the code below instead of the above code for the same task Edit the ConLib/CategoryListPage.ascx file and locate the following line of code <asp:ListItem Text="By Name (A -> Z)"...
by m_plugables
Mon Apr 07, 2008 3:34 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Remove alphabetical ordering in category list
Replies: 5
Views: 4374

Re: Remove alphabetical ordering in category list

Locate the following line of code string sortExpression = SortResults.SelectedValue; You can change the sort order and make it like in the Browse Catalog page. For this just make the above line of code look like string sortExpression = String.Empty; means pass an empty string int sort expression par...
by m_plugables
Sat Apr 05, 2008 5:43 am
Forum: Good Reference Posts
Topic: search on customer side.
Replies: 23
Views: 31638

Re: search on customer side.

Edit the ConLib/SearchPage.ascx.cs and locate the following line of code ProductList.DataSource = ProductDataSource.NarrowSearch(_Keywords, this.CategoryId, _ManufacturerId, 0, 0, _PageSize, (_HiddenPageIndex * _PageSize), SortResults.SelectedValue); and replace it with the following lines of code i...
by m_plugables
Sat Apr 05, 2008 1:58 am
Forum: Good Reference Posts
Topic: Customers By Sku Report
Replies: 6
Views: 14917

Re: Customers By Sku Report

Mazhar- do you have a Paypal donate button? You have given us some valuable code in the few posts you have done.
Not yet but it will be there soon :)
by m_plugables
Fri Apr 04, 2008 10:36 am
Forum: Good Reference Posts
Topic: Customers By Sku Report
Replies: 6
Views: 14917

Customers By Sku Report

This report provides the functionality to view customers based upon some specific product sku. When searched for some specific Sku the report lists the user name, email, first name, last name and order information for all the customers who bought that product. For more information please click here ...