Search found 149 matches

by m_plugables
Fri Apr 04, 2008 2:54 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: removing vertical grey bars.
Replies: 6
Views: 4522

Re: removing vertical grey bars.

For debugging the style problems try to use Fire Fox with Fire Bug plug in. It will give you a great help for such problems.
by m_plugables
Fri Apr 04, 2008 2:48 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: removing vertical grey bars.
Replies: 6
Views: 4522

Re: removing vertical grey bars.

locate the following in css #innerContentWrapper { background-color:#FFFFFF; border-left:5px solid #BEB6A1; border-right:5px solid #BEB6A1; margin:0pt auto; text-align:left; width:90%; } and make it look like #innerContentWrapper { background-color:#FFFFFF; margin:0pt auto; text-align:left; width:90...
by m_plugables
Tue Apr 01, 2008 1:22 am
Forum: Good Reference Posts
Topic: Manually adding order from admin needs "Create User&quo
Replies: 6
Views: 11220

Re: Manually adding order from admin needs "Create User&quo

This problem is because i forgot to include the name spaces
Edit the file Admin/Orders/Default.aspx.cs and in the top section of page where you will find the using statements add the following statements as well

Code: Select all

using CommerceBuilder.Users;
using System.Text.RegularExpressions;
by m_plugables
Tue Apr 01, 2008 1:18 am
Forum: Good Reference Posts
Topic: Manually adding order from admin needs "Create User&quo
Replies: 6
Views: 11220

Re: Manually adding order from admin needs "Create User&quo

sorry i missed some information in the post.
by m_plugables
Fri Mar 28, 2008 4:56 am
Forum: Good Reference Posts
Topic: Recently Bought Items Control
Replies: 0
Views: 4447

Recently Bought Items Control

This control displays items most recently bought from the store. You can place this control in your store anywhere you like. In a side-bar or in the content area. This control exposes some properties in order to provide the user flexibility to meet his custom requirements. This control can be used w...
by m_plugables
Thu Mar 27, 2008 11:34 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Country drop down list issue
Replies: 4
Views: 3812

most probably the .cs file. As the countries information is coming from database table means there may some code which is adding the counteries to the list more then once. Check the statement like [dropdownlist name].Items.Add() Also check the html code file it may contain some static item additions...
by m_plugables
Thu Mar 27, 2008 7:07 am
Forum: Good Reference Posts
Topic: Rss Feed Reader Control
Replies: 2
Views: 6458

Rss Feed Reader Control

Rss Feed Reader control is a free of cost control and provide you the ability to put Rss Feeds from different providers in your AbleCommerce 7.x store. It support various versions of the Rss Feeds like 0.90, 0.91, 0.92, and 2.0.1. This control can be placed any where at admin or store side. Its very...
by m_plugables
Wed Mar 26, 2008 11:31 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Different content page per sub-category
Replies: 14
Views: 6677

Wow, thanks for correction. I was misunderstanding the feature.
by m_plugables
Wed Mar 26, 2008 5:59 am
Forum: Feature Requests
Topic: Product navigation for products in same category
Replies: 7
Views: 5948

Edit Admin/Product/ProductMenu.ascx and append the following html at the very end of the file <br /> <asp:Panel ID="MoreProductsPanel" runat="server"> <asp:GridView ID="OtherProductsGrid" runat="server" AutoGenerateColumns="False" Width="100%" SkinID="PagedList" AllowSorting="false" OnRowCreated="Ot...
by m_plugables
Wed Mar 26, 2008 3:38 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Different content page per sub-category
Replies: 14
Views: 6677

First edit the Category and provide the information like category description.
Then from Admin side go to Web site -> Themes and display pages
and for Category Display Page select option like CategoryGrid4.ascx
by m_plugables
Wed Mar 26, 2008 12:17 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Different content page per sub-category
Replies: 14
Views: 6677

I think category specific pages are not supported currently. All categories share the same scriptlet.
by m_plugables
Tue Mar 25, 2008 11:49 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Changing default sort method
Replies: 2
Views: 3594

Edit ConLib/SearchPage.ascx file and locate following of code <asp:DropDownList ID="SortResults" runat="server" AutoPostBack="true" CssClass="sorting" OnSelectedIndexChanged="SortResults_SelectedIndexChanged" EnableViewState="true"> <asp:ListItem Text="Featured" Value="IsFeatured DESC, Name ASC"></a...
by m_plugables
Tue Mar 25, 2008 11:20 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Include Add to Cart in a Datagrid
Replies: 22
Views: 10396

place this info inside the UC tag in ascx file which contains the html. For example <asp:DataList ID="ProductList" runat="server" RepeatColumns="4" RepeatDirection="Horizontal" Width="100%" OnItemDataBound="ProductList_ItemDataBound" DataKeyField="ProductId" CssClass="catalog" EnableViewState="false...
by m_plugables
Mon Mar 24, 2008 11:51 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Adding pages
Replies: 2
Views: 2884

If you do want to add a new page. The quick way to do this is just copy and paste any existing content page for this example make a copy of the ContactUs.aspx page and edit it. Now change the following information as per your requirements. <%@ Page Language="C#" MasterPageFile="~/Layouts/Scriptlet.m...
by m_plugables
Mon Mar 24, 2008 11:29 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Include Add to Cart in a Datagrid
Replies: 22
Views: 10396

use AlternatingItemStyle-BackColor property for alternating item background color and ItemStyle-BackColor for others
by m_plugables
Mon Mar 24, 2008 11:03 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Pulling Data Off Dashboard to .CSV File/Spreadsheet
Replies: 1
Views: 1960

For import/export operations AC7 is using the DataPort utility.
by m_plugables
Mon Mar 24, 2008 4:41 am
Forum: Feature Requests
Topic: Suggestion: Put the product page index at top and bottom
Replies: 7
Views: 7614

You can use the PageButtonCount property of the GridView to set how many indexed page numbers you want to show
by m_plugables
Mon Mar 24, 2008 4:04 am
Forum: Good Reference Posts
Topic: Manually adding order from admin needs "Create User&quo
Replies: 6
Views: 11220

edit Admin/Orders/Default.aspx and find <asp:Button ID="PlaceOrderButton" runat="server" Text="New Order" OnClick="PlaceOrderButton_Click" CausesValidation="true" /> and put this line <asp:CheckBox ID="CreateUser" runat="server" Text="Create User" OnCheckedChanged="CreateUser_CheckedChanged" AutoPos...
by m_plugables
Mon Mar 24, 2008 2:31 am
Forum: Good Reference Posts
Topic: Manually adding order from admin needs "Create User&quo
Replies: 6
Views: 11220

This feature will be quite handy. Admin/People/Users/AddUserDialog.ascx can help you as a good reference.
by m_plugables
Sat Mar 22, 2008 3:56 am
Forum: Good Reference Posts
Topic: More date range options in Order Manager
Replies: 1
Views: 5224

Yesterday option for order manager

edit Admin/Orders/Default.aspx.cs file and following method to it private void ApplyLastDateFilter() { _isCustomDateTime = false; DateTime tempDate = DateTime.Now.AddDays(-1); DateTime startDate = (new DateTime(tempDate.Year, tempDate.Month, tempDate.Day, 0, 0, 0)); DateTime endDate = (new DateTime(...
by m_plugables
Thu Mar 20, 2008 5:18 am
Forum: Good Reference Posts
Topic: number of products / number in stock
Replies: 2
Views: 5121

Create an empty file StockInfo.ascx in the ConLib folder and put the following code in it <%@ Control Language="C#" AutoEventWireup="true" CodeFile="StockInfo.ascx.cs" Inherits="ConLib_StockInfo" %> <asp:Label ID="StockInfo" runat="server" /> Create another empty file StockInfo.ascx.cs in the ConLib...
by m_plugables
Wed Mar 19, 2008 1:56 am
Forum: Good Reference Posts
Topic: Code to add the server time to the Who Is Online Page.
Replies: 3
Views: 6446

Reply: Add the server time to the Who Is Online Page.

Edit the Admin/Reports/WhoIsOnline.aspx page and add following html <tr class="noPrint"> <td> <asp:Label ID="ServerTimeLabel" runat="server" EnableViewState="false" Font-Bold="true">Server Time: </asp:Label> <asp:Label ID="ServerTime" runat="server" EnableViewState="false" /> </td> </tr> just after ...
by m_plugables
Wed Mar 19, 2008 1:27 am
Forum: Good Reference Posts
Topic: Code for Alert when there are reviews to approve
Replies: 10
Views: 24118

if (store.Settings.ProductReviewEnabled != CommerceBuilder.Users.UserAuthFilter.None) { ProductReviewCollection unaprovedReviews = ProductReviewDataSource.LoadUnApprovedReviews(); if (unaprovedReviews.Count > 0) { string alertText = "You have ({0}) unaproved review{1}."; string tempValue = (unaprov...
by m_plugables
Wed Mar 19, 2008 12:16 am
Forum: Good Reference Posts
Topic: Save and close button
Replies: 2
Views: 11262

Save And Close Button

Edit the Admin/Website/Scriptlets/EditScriptlet.aspx page. Add a new function Save and put all the SaveButton_Click function code in it with two small modifications private bool Save() { if (Page.IsValid) { //IF NAME HAS CHANGED WE MUST VERIFY IT IS NOT A DUPLICATE string updatedIdentifier = Identif...