Search found 18 matches

by Christopher Kiraly
Wed Sep 16, 2020 12:51 pm
Forum: AbleCommerce GOLD
Topic: CategoryGridPage pager not working
Replies: 0
Views: 19380

CategoryGridPage pager not working

We are setting up a base site, and adding a webpage using this on the page url "/buy-online.aspx". On the pager buttons [1][2], when I hover over 2, it shows the link url as [website]/webpage.aspx?s=IsFeatured... instead of [website]/buy-online.aspx?... And of course, when I click on the link, I get...
by Christopher Kiraly
Wed Apr 01, 2020 9:54 am
Forum: AbleCommerce GOLD
Topic: [Solved] Adding Admin Page not working
Replies: 1
Views: 4236

Re: [Solved] Adding Admin Page not working

The issue was completely not AC. There was an issue with a dll being replaced, and web.config redirecting 500 errors to PageNotFound.
by Christopher Kiraly
Tue Mar 31, 2020 12:14 pm
Forum: AbleCommerce GOLD
Topic: [Solved] Adding Admin Page not working
Replies: 1
Views: 4236

[Solved] Adding Admin Page not working

Ok - first let me start with this... I've done this on 2 other sites and it's working just fine on these other sites, so I have successfully done this. With that said... I'm trying to add a custom control page (adding our own custom Image Carousel for our client sites) to the admin panel. I've modif...
by Christopher Kiraly
Tue Mar 31, 2020 9:34 am
Forum: AbleCommerce GOLD
Topic: GetFeaturedProducts sortExpression options
Replies: 3
Views: 5734

Re: GetFeaturedProducts sortExpression options

Thanks - as a follow up question... I don't see where you can set the OrderBy value in the Products table. I know using the sort field in the catagory section updates the OrderBy in CatalogNodes, but I don't see how you can set the order by for individual products. Where is this located, or how can ...
by Christopher Kiraly
Mon Mar 30, 2020 11:58 am
Forum: AbleCommerce GOLD
Topic: GetFeaturedProducts sortExpression options
Replies: 3
Views: 5734

GetFeaturedProducts sortExpression options

Can someone tell me what fields are returned with GetFeaturedProducts so I can determine what sort options I have, or else point me to the documentation that tells me about this function!

Thanks!
by Christopher Kiraly
Wed Mar 18, 2020 9:37 am
Forum: AbleCommerce GOLD
Topic: [Solved] Insert/Embed Media not allowing fullscreen
Replies: 4
Views: 7678

Re: Insert/Embed Media not allowing fullscreen

Thank you very much! This solved the problem.
by Christopher Kiraly
Tue Mar 17, 2020 1:34 pm
Forum: AbleCommerce GOLD
Topic: [Solved] Insert/Embed Media not allowing fullscreen
Replies: 4
Views: 7678

Re: Insert/Embed Media not allowing fullscreen

<h1>Tutorials & Videos</h1> <div class="row"> <div class="col-md-6"> <div class="embed-responsive embed-responsive-16by9"> <iframe title="Airtronic Heaters: A Visual Inspection" src="https://www.youtube.com/embed/R6myWUdJIq4" frameborder="0" width="320" height="240"> </iframe> </div></div></div...
by Christopher Kiraly
Mon Mar 16, 2020 12:33 pm
Forum: AbleCommerce GOLD
Topic: [Solved] Insert/Embed Media not allowing fullscreen
Replies: 4
Views: 7678

[Solved] Insert/Embed Media not allowing fullscreen

Let me get this out of the way: AbleCommerce for ASP.NET VERSION: 7.0.92.9476 Release Label: GoldR12SR2 We're adding a tutorials/videos page to the site, and have used both the html editor and the Insert/Edit Embedded Media button. After entering the media information (source, URL, dimensions, etc) ...
by Christopher Kiraly
Mon Sep 09, 2019 11:54 am
Forum: AbleCommerce GOLD
Topic: Importing Amazon Orders
Replies: 1
Views: 6749

Importing Amazon Orders

So, I'm wanting to import my orders on my Amazon site into my Ablecommerce site (v7.0.92.9476 GOLD R12SR2).

I found and old post from 2015 Importing Amazon Seller Central Orders and I'm wondering is this what everyone else uses for this, or has something new come along?
by Christopher Kiraly
Tue Apr 16, 2019 11:59 pm
Forum: AbleCommerce GOLD
Topic: Dynamic Pricing (Price / Sq Ft)
Replies: 1
Views: 3523

Dynamic Pricing (Price / Sq Ft)

I apologize ahead of time if this has been addressed elsewhere... and I am new to using AbleCommerce (sort of being thrown into this haphazardly). So - is there a standard way (before I go into designing a custom control) to have the system do a calculation on a pricing page to allow a customer to e...
by Christopher Kiraly
Fri May 18, 2018 1:36 am
Forum: AbleCommerce GOLD
Topic: Multi-Category Product Sorting in Category Details Page
Replies: 16
Views: 13747

Re: Multi-Category Product Sorting in Category Details Page

If it is the paging that causes the problem BINGO!!! Of course the problem is that the reordering is occurring over items 11-14, and 13 & 14 aren't coming in as it's only pulling the top twelve!!! As the client actually prefers not having the pagination in it (and we are only talking about a max of...
by Christopher Kiraly
Thu May 17, 2018 6:47 am
Forum: AbleCommerce GOLD
Topic: Multi-Category Product Sorting in Category Details Page
Replies: 16
Views: 13747

Re: Multi-Category Product Sorting in Category Details Page

Yes -

When I run both queries in Mgmt Studio, I get the same order on the Products:

Product/CatalogNodeId : 57 | 62 | 135 | 136 | 69 | 70 | 71 | 72 | 73 | 74 | 76 | 75 | 54 | 59
by Christopher Kiraly
Thu May 17, 2018 4:30 am
Forum: AbleCommerce GOLD
Topic: Multi-Category Product Sorting in Category Details Page
Replies: 16
Views: 13747

Re: Multi-Category Product Sorting in Category Details Page

Yes - I ran the following modified query in Mgmg Studio: select CatalogNodeId, p.Name from ac_CatalogNodes cn left outer join ac_Products p on p.ProductId = cn.CatalogNodeId where CategoryID = 10 order by cn.OrderBy where 10 is the Category in question - The results are the products in the expected ...
by Christopher Kiraly
Thu May 17, 2018 1:43 am
Forum: AbleCommerce GOLD
Topic: Multi-Category Product Sorting in Category Details Page
Replies: 16
Views: 13747

Re: Multi-Category Product Sorting in Category Details Page

Here is the code right now: IList<Product> visibleNodes = ProductDataSource.LoadForCategory(true, this.CategoryId, false, true, SortResults.SelectedValue, _pageSize, (_HiddenPageIndex * _pageSize)); IList<int> catalogNodeOrder = NHibernateHelper .CreateSQLQuery("select CatalogNodeId from ac_CatalogN...
by Christopher Kiraly
Wed May 16, 2018 4:33 am
Forum: AbleCommerce GOLD
Topic: Multi-Category Product Sorting in Category Details Page
Replies: 16
Views: 13747

Re: Multi-Category Product Sorting in Category Details Page

First - Thank you!!! That solved my original problem!!! Now I've come across something that doesn't make any sense at all... For a different Product category, this new custom view is not working... When I query the DB (outside of ablecommerce), and view the CatalogNode table (and link it to product)...
by Christopher Kiraly
Wed Apr 25, 2018 5:20 am
Forum: AbleCommerce GOLD
Topic: Multi-Category Product Sorting in Category Details Page
Replies: 16
Views: 13747

Re: Multi-Category Product Sorting in Category Details Page

Is there a more detailed error message in the error log? (Help > Error Log in Admin, or [site root path]\App_Data\Logs\app.log on the server). Here is what the admin Error Log supplied: Exception: Exception of type 'System.Web.HttpUnhandledException' was thrown. Stack Trace: at System.Web.UI.Page.H...
by Christopher Kiraly
Tue Apr 24, 2018 7:19 am
Forum: AbleCommerce GOLD
Topic: Multi-Category Product Sorting in Category Details Page
Replies: 16
Views: 13747

Re: Multi-Category Product Sorting in Category Details Page

Jay - Thanks for the response... however, when I try your idea, my page returns We are sorry, but the page you are trying to access has experienced an error. What I did was based on what you said. My new code looks like: IList<Product> visibleNodes = ProductDataSource.LoadForCategory(true, this.Cate...
by Christopher Kiraly
Mon Apr 23, 2018 4:22 am
Forum: AbleCommerce GOLD
Topic: Multi-Category Product Sorting in Category Details Page
Replies: 16
Views: 13747

Multi-Category Product Sorting in Category Details Page

Problem: When using the CategoryGrid2 page, and have products that are in multiple categories, the Order By view uses the Product.OrderBy field, which due to products being in multiple categories isn't necessarily correct (as there are now (2) Order By: 5.00 as well as (2) Order By: 6.00, and then ...