Search found 23 matches

by BWalt302
Thu May 23, 2013 2:42 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Popular Products are showing random order?
Replies: 9
Views: 10287

Re: Popular Products are showing random order?

I tried that, and unfortunately it is still displaying them in a different order each page load.
by BWalt302
Tue May 21, 2013 9:45 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Popular Products are showing random order?
Replies: 9
Views: 10287

Re: Popular Products are showing random order?

Anyone? Still needing help with this.
by BWalt302
Thu May 16, 2013 6:59 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Popular Products are showing random order?
Replies: 9
Views: 10287

Re: Popular Products are showing random order?

Is there a way I could implement an SQL query (SELECT P.ProductId AS ProductId, COUNT(OI.ProductId) AS OrderCount FROM ac_OrderItems AS OI RIGHT OUTER JOIN ac_Products AS P ON OI.ProductId = P.ProductId WHERE P.ProductId IN ({0}) GROUP BY OI.ProductId, P.ProductId ORDER BY OrderCount DESC",productId...
by BWalt302
Thu May 16, 2013 6:55 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Popular Products are showing random order?
Replies: 9
Views: 10287

Re: Popular Products are showing random order?

I am actually using able commerce 7. The issue is that I have 3 different categories on the home page that I am pulling product from. So I have the code 3 times with 3 different cats: such as [[ConLib:custom/bestsell CategoryId="2" Caption="Best Sellers" MaxItems="360"]] [[ConLib:custom/bestsell Cat...
by BWalt302
Thu May 16, 2013 5:37 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Popular Products are showing random order?
Replies: 9
Views: 10287

Re: Popular Products are showing random order?

I dont know whats going on then, because my code //ProductList.DataSource = ProductDataSource.GetPopularProducts(_MaxItems,_CategoryId); is displaying products, but it is not picking up the correct category, and it is showing them in different order every time. How would I implement the loadforcrite...
by BWalt302
Wed May 15, 2013 12:26 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Popular Products are showing random order?
Replies: 9
Views: 10287

Re: Popular Products are showing random order?

I also was trying to figure something out maybe using this method: //ProductList.DataSource = ProductDataSource.LoadForCriteria(_CatrgoryID,_MaxItems,0,"OrderCount DESC"); no luck though... Possibly I believe I could somehow pull the order count from the database and just put it inline with my code....
by BWalt302
Wed May 15, 2013 12:18 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Popular Products are showing random order?
Replies: 9
Views: 10287

Popular Products are showing random order?

Ok, so I am trying to get my products to display in order from best selling to lowest selling (best being first, and lowest selling on bottom of page) I have used : ProductList.DataSource = ProductDataSource.GetPopularProducts(_MaxItems,_CategoryId); - Everything is working great, except each time I...
by BWalt302
Mon Feb 06, 2012 3:21 pm
Forum: Critique My AbleCommerce Shopping Cart Powered Site!
Topic: Fire Fold -
Replies: 3
Views: 12526

Re: Fire Fold -

Thats because it went live. It is not www.firefold.com
by BWalt302
Mon Jan 30, 2012 3:21 pm
Forum: Critique My AbleCommerce Shopping Cart Powered Site!
Topic: Fire Fold -
Replies: 3
Views: 12526

Fire Fold -

I have been working on this for quite some time now, http://www.firefolddev.com - let me know what you think.

Also, I know there are a few IE bugs, can anyone please let me know what errors or mis-alignment issues are occurring in ie 7 and 8?

Thanks!
by BWalt302
Tue Jan 10, 2012 1:42 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Most viewed Products
Replies: 3
Views: 2607

Re: Most viewed Products

This is for top sells though, I want most views?
by BWalt302
Mon Jan 09, 2012 4:40 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Most viewed Products
Replies: 3
Views: 2607

Most viewed Products

Is there a plugin or a way to display the most viewed products of the website somewhere on a page ? Kind of like featured products but the top 5 or so with the most page views overall.
by BWalt302
Wed Dec 28, 2011 2:27 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Add to cart, page wont refresh
Replies: 1
Views: 1935

Re: Add to cart, page wont refresh

Nevermind, I fixed it - it was due to a <!-- commented out conlib -->
by BWalt302
Wed Dec 28, 2011 2:22 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Add to cart, page wont refresh
Replies: 1
Views: 1935

Add to cart, page wont refresh

AbleCommerce 7.0.7 build 14600

When I click add to cart, everything works as should, but I have to MANUALLY REFRESH the page to get it to show the updated cart in the sidebar. How do I make it refresh the page automatically after adding to cart? Thanks!
by BWalt302
Tue Dec 27, 2011 5:14 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Category List Edit
Replies: 1
Views: 2117

Re: Category List Edit

Bump still need this done, will pay good $ to have by the 5th.
by BWalt302
Tue Dec 27, 2011 5:04 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Calling Custom Fields
Replies: 7
Views: 6308

Re: Calling Custom Fields

That worked like a charm, added it to my Tabs code, and pulled it with "<bmw:FAQ ID="FAQ" runat="server" />"

Thank you so much for the help!
by BWalt302
Tue Dec 27, 2011 9:10 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Calling Custom Fields
Replies: 7
Views: 6308

Re: Calling Custom Fields

Hey, so I tried to do this, and am getting : [[Conlib:Custom\CallFAQ]] d:\FireFold\ConLib\Custom\CallFAQ.ascx.cs(1): error ASPNET: Make sure that the class defined in this code file matches the 'inherits' attribute, and that it extends the correct base class (e.g. Page or UserControl). As an error. ...
by BWalt302
Thu Dec 22, 2011 12:09 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Calling Custom Fields
Replies: 7
Views: 6308

Calling Custom Fields

OK So I have a custom field set up called FAQ. It works and saves information in the field from the admin side, thats not a problem. What I need to do is create a new file, FAQ.ascx & FAQ.ascx.cs which is a conlib file that will call only from this FAQ custom field, it cannot call all of the fields ...
by BWalt302
Thu Dec 01, 2011 10:02 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Category List Edit
Replies: 1
Views: 2117

Category List Edit

Hey all, here is what I am wanting to do. I am going to be using the category list for my new site design. Currently, the Category list displays only one sub category at a time. See photos below. What I want to do is, when someone clicks on lets say, Adapters and Connectors from my menu, instead of ...
by BWalt302
Mon Nov 14, 2011 9:25 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Custom Category List - Reading Quantity to add to cart
Replies: 4
Views: 3202

Re: Custom Category List - Reading Quantity to add to cart

Yea, I think we could change the layout up just a little bit, whatever I need to get it working.
by BWalt302
Thu Nov 03, 2011 3:06 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Dropdown Menu In Sidebar...
Replies: 1
Views: 2012

Dropdown Menu In Sidebar...

My website has a javascript drop down in the left sidebar for navigation. It includes Categories, and when you highlight one, Sub Categories Pop-out. The issue is Google for some reason is reading this as content, and it is effecting out SEO. What can be done to prevent this from happening but still...
by BWalt302
Thu Nov 03, 2011 8:29 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Custom Category List - Reading Quantity to add to cart
Replies: 4
Views: 3202

Custom Category List - Reading Quantity to add to cart

ListPageASCXCS.zip Hi everyone. I am working on a new Category layout for a site. I have everything like I need it, except when I add the item to the cart, it will not read the quanity field from the "updown" control. I have attached my two codes - CategoryListPageCP.ascx & CategoryListPageCP.ascx....
by BWalt302
Mon Oct 17, 2011 10:24 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Shipping To Russia
Replies: 1
Views: 1681

Shipping To Russia

Can anyone help me out here, my website will not show a shipping option when Russia Is selected as the Country. It calculates it just find using out shipping estimator, but when you add an item to the cart, enter address and choose russia, it shows up blank for available options. UPS USPS are select...