You have no items in your shopping cart.

Wednesday, April 24, 2024 7:54:57 AM

Feature Requests

Posted: 9 years ago

#205 Quote

Support

Posted: 9 years ago

#205 Quote
Here you can order a new plug-in functionality.

Posted: 6 years ago

#6804 Quote

michaelm@gogbs.com

Posted: 6 years ago

#6804 Quote
It would be nice to have the option to sort the display of the Specification Attribute Option Values.

Yup, we can us the Display Order but having a setting to sort Alphabetically would be nice.

I will email you a screen shot.

Posted: 6 years ago

#6807 Quote

Support

Posted: 6 years ago

#6807 Quote
What nop version do you use?

Posted: 6 years ago

#6810 Quote

Support

Posted: 6 years ago

#6810 Quote
You can do it without me.
Open the stored procedure
FNS_SpeedFilter_GetSpeedFilters

and change the next code if you use ONE language

old code

        --one language
        select S.Id,S.Name,S.DisplayOrder
        from SpecificationAttribute S WITH (NOLOCK)
        where S.Id in (select SpecificationAttributeId from #tmpSpecificationAttributeOption)
        order by S.DisplayOrder

        select SO.Id,SO.SpecificationAttributeId,SO.Name,SO.DisplayOrder
        from SpecificationAttributeOption SO WITH (NOLOCK)
        where SO.Id in (select Id from #tmpSpecificationAttributeOption)
        order by SO.SpecificationAttributeId,SO.DisplayOrder




new code

        --one language
        select S.Id,S.Name,S.DisplayOrder
        from SpecificationAttribute S WITH (NOLOCK)
        where S.Id in (select SpecificationAttributeId from #tmpSpecificationAttributeOption)
        order by S.DisplayOrder

        select SO.Id,SO.SpecificationAttributeId,SO.Name,SO.DisplayOrder
        from SpecificationAttributeOption SO WITH (NOLOCK)
        where SO.Id in (select Id from #tmpSpecificationAttributeOption)
        order by SO.SpecificationAttributeId,SO.Name

Posted: 6 years ago

#6812 Quote

michaelm@gogbs.com

Posted: 6 years ago

#6812 Quote
Okay this works.

Posted: 6 years ago

#6901 Quote

michaelm@gogbs.com

Posted: 6 years ago

#6901 Quote
Is there a way to change the 'Filter By" text that shows up at the top of the Speedfilters to something else?

Posted: 6 years ago

#6903 Quote

Support

Posted: 6 years ago

#6903 Quote
You can change any test messages in localization table.
Try to find this value "FoxNetSoft.Plugin.Misc.SpeedFilters.UserMode.FilterTitle"

Posted: 6 years ago

#6909 Quote

michaelm@gogbs.com

Posted: 6 years ago

#6909 Quote
Thanks. It works!

Powered by nopCommerce

Copyright © 2023 FoxNetSoft. All rights reserved