Search found 149 matches

by m_plugables
Mon May 05, 2008 2:57 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Affiliate Add to Cart?
Replies: 6
Views: 10139

Re: Affiliate Add to Cart?

Create a new file ConLib/AddToCartEx.ascx and put the following code in it. <%@ Control Language="C#" ClassName="AddToCartEx" %> <script runat="server"> private int _ProductId; protected void Page_Load(object sender, EventArgs e) { _ProductId = PageHelper.GetProductId(); if (_ProductId > 0) AddToCar...
by m_plugables
Mon May 05, 2008 2:48 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Affiliate Add to Cart?
Replies: 6
Views: 10139

Re: Affiliate Add to Cart?

I don't think so that currently any page is providing this facility. But this can be incorporated into ac7 very easily with some small changes. You can create some user control which can handle this type of functionality when placed over some page.
by m_plugables
Sat May 03, 2008 5:56 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: issue with URL rewrite?
Replies: 30
Views: 34976

Re: issue with URL rewrite?

Add the following functions in App_Code/PageHelper.cs file public static string GenerateLink(string productId, Page page) { Product product = ProductDataSource.Load(AlwaysConvert.ToInt(productId)); return GenerateLink(product, page); } public static string GenerateLink(int productId,Page page) { Pro...
by m_plugables
Wed Apr 30, 2008 6:54 am
Forum: Good Reference Posts
Topic: Free Social Bookmarks Control download
Replies: 0
Views: 3731

Free Social Bookmarks Control download

This control provides any easy way to social bookmarking in AC7 store. A Social Bookmark is the URL entry of a Web site in a shared list of user-created, Internet bookmarks. This is an increasingly popular method of classifying, locating, ranking, and sharing Internet resources. Bookmarked resources...
by m_plugables
Tue Apr 22, 2008 5:07 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Search question
Replies: 2
Views: 2179

Re: Search question

Not clear what you mean... can you give some example?
by m_plugables
Tue Apr 22, 2008 5:05 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Integration with Shipwire
Replies: 6
Views: 4282

Re: Integration with Shipwire

ShipWire to my understanding, isn't a shipping provider but it is a complete replacement shipping system of your whole shipping process. What kind of integration do you have in mind? What kind of API do they provide for integration?
by m_plugables
Tue Apr 22, 2008 2:05 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: errors durring installation
Replies: 1
Views: 2068

Re: errors durring installation

It seems that your application is referencing some assembly which is either missing, or this reference is wrong probably because of some invalid configuration in web.config file. This may be because of missing AJAX Extensions.
by m_plugables
Tue Apr 22, 2008 1:14 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Request.IsSecureConnection
Replies: 2
Views: 2895

Re: Request.IsSecureConnection

Code: Select all

#if($Request.IsSecureConnection)
<p>hello world!</p>
#endif
If there's a better way to do something like this in a scriptlet, please let me know.
Is this code is causing some problem or you just want to know some other way to do this
by m_plugables
Fri Apr 18, 2008 7:44 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Anyone seen this arror before?
Replies: 11
Views: 5675

Re: Anyone seen this arror before?

The ajax panel causing the problem exist in the ConLib/ProductReviewsPanel.ascx control. You should check it. There is only one AJAX Panel in this file and it should be like

Code: Select all

<ajax:UpdatePanel ID="ReviewsPanelAjax" runat="server">
by m_plugables
Fri Apr 18, 2008 4:52 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Need dropdown listbox using categoryID, parentID, level
Replies: 10
Views: 33726

Re: Need dropdown listbox using categoryID, parentID, level

You need to modify the ConLib/CategoryDropDownList.ascx.cs file. Locate the following line of code in the file subcatList.Add(new ListItem(prefix + subcat.Name, subcat.CategoryId.ToString())); and replace with the following line of code subcatList.Add(new ListItem(prefix + subcat.Name, subcat.Catego...
by m_plugables
Fri Apr 18, 2008 2:44 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Ajax Collapsible panel within product description?
Replies: 14
Views: 13521

Re: Ajax Collapsible panel within product description?

Instead of using server side code try to use the JavaScript and CSS. For example create some Show and Hide CSS classes and then dynamically put these classes on the data you want to show or hide using javascript.
by m_plugables
Fri Apr 18, 2008 2:23 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Anyone seen this arror before?
Replies: 11
Views: 5675

Re: Anyone seen this arror before?

I am agreed with Judy. Either the Reviews Panel is missing or the id used to access the panel is invalid. Well it will be lot more help full if you post the code causing problem.
by m_plugables
Fri Apr 18, 2008 1:41 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Page 'Edit Mode' .... Where are these stored?
Replies: 6
Views: 3840

Re: Page 'Edit Mode' .... Where are these stored?

The customized information is placed in the App_Data\Scriptlets\Custom folder. This folder has same directory structure like the App_Data\Scriptlets\Default folder. The Default folder contains the standard script lets bundled with AC7. For every thing you edited like contents etc, the customized ver...
by m_plugables
Thu Apr 17, 2008 6:27 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: unable to acccess images & assets
Replies: 5
Views: 3457

Re: unable to acccess images & assets

Exception Details: System.IO.DirectoryNotFoundException: Could not find a part of the path 'd:\hosting\rontimco\Assets'.
From exception details it seems that the folder doesn't exist.
by m_plugables
Tue Apr 15, 2008 4:17 am
Forum: Good Reference Posts
Topic: ship time message
Replies: 4
Views: 5614

Re: ship time message

Here is a sample code you can easily extend it. I assumed that when we got low stock for a product and back order is allowed then there should be a message some where with product information that its shipping may be late. Create a new file ConLib/BackOrderInfo.ascx and put the following code in it....
by m_plugables
Tue Apr 15, 2008 4:08 am
Forum: Good Reference Posts
Topic: ship time message
Replies: 4
Views: 5614

Re: ship time message

Ok i will try find a workaround and will post the code
by m_plugables
Tue Apr 15, 2008 3:24 am
Forum: Good Reference Posts
Topic: ship time message
Replies: 4
Views: 5614

Re: ship time message

well i think we haven't any time frame message for this purpose.
by m_plugables
Tue Apr 15, 2008 2:10 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Custom Fields on Order
Replies: 3
Views: 5207

Re: Custom Fields on Order

I can't modify classes either. My only solution was to create external tables, class them and develop methods. It's important to me keep the future-upgrades-still-compatible scenario alive. Agreed with you. I think Custom table + custom data warper is the best solution in this case for some one who...
by m_plugables
Tue Apr 15, 2008 1:56 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Product Options Not In Confirmation Email
Replies: 1
Views: 2241

Re: Product Options Not In Confirmation Email

Probably it will require some N-Velocity code. For reffrance use the existing code in the script lets and email templates
by m_plugables
Tue Apr 15, 2008 1:43 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Multipart Email notices
Replies: 4
Views: 3630

Re: Multipart Email notices

I haven't seen any thing like this, we should ask Judy for her opinion.
by m_plugables
Fri Apr 11, 2008 1:54 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Report Date "Business Start Time" setting?
Replies: 5
Views: 3231

Re: Report Date "Business Start Time" setting?

Well after inspecting the report i do not think so that there is a way to control the boundary time using this ReportDataSource.GetDailySales(DateTime) function.
by m_plugables
Fri Apr 11, 2008 1:11 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Breadcrumbs not rendering in Checkout process
Replies: 6
Views: 4688

Re: Breadcrumbs not rendering in Checkout process

This is the same as adding it through the Store Admin... right? Or am I missing something? Yes you are right. Now modify the Store Site Map information means the url information for the checkout pages It means put url information for checkout pages in Web.sitemap so that breed crumbs can use it as ...
by m_plugables
Thu Apr 10, 2008 5:43 am
Forum: Feature Requests
Topic: search on merchant side
Replies: 27
Views: 32048

Re: search on merchant side

Its not as easy as with the customer side. I will look for some workaround and will post the code .
by m_plugables
Thu Apr 10, 2008 5:39 am
Forum: Good Reference Posts
Topic: Save And Close button for Email Templates
Replies: 1
Views: 3685

Re: Save And Close button for Email Templates

Edit the Admin/Store/EmailTemplates/EditTemplate.aspx file and find the following line of code <asp:Button ID="SaveButton" runat="server" Text="Save" OnClick="SaveButton_Click" /> and add the following line of code just below that <asp:Button ID="SaveAndCloseButton" runat="server" Text="Save And Clo...