SlideShare uma empresa Scribd logo
1 de 19
Baixar para ler offline
Improved Sorting
Magento Extension
User Guide
Official extension page: Improved Sorting
User Guide: Improved Sorting
Page 1
Support: http://amasty.com/support.html
Table of contents:
User Guide: Improved Sorting
Page 2
Support: http://amasty.com/support.html
1. Steps to configure Improved Sorting……………….…………………………..3
2. Custom attributes for bestsellers and most viewed ……………………...10
3. New sorting options on category page .………………….…………………...15
4. New sorting options on front end ……...………………….…………………..16
5. Creating blocks based on sorting options ……………………………………17
6. Examples of blocks based on sorting options ………………………………18
1. Steps to configure Improved Sorting
User Guide: Improved Sorting
Page 3
Support: http://amasty.com/support.html
Please go to admin panel -> System ->
Configuration -> Improved Sorting to
configure the extension.
The sales of products for ‘Bestsellers’
sorting option will be counted for the
period, indicated here. So if you
indicate ‘30’ here, sales for the last 15
days will be counted and the order of
products for bestseller sorting option
will be defined based on the count.
We recommend to enable ‘Use
Index’ option for large
catalogs to improve the
extension performance for
sorting options ‘Best Sellers’,
‘Most Viewed’ and ‘Now in
Wishlists’. For the
information to be up to date,
the index is refreshed
automatically once per day, if
you have cron enabled for
your website. You can also
refresh the index manually in
admin panel -> System ->
Index Management.
1. Steps to configure Improved Sorting
User Guide: Improved Sorting
Page 4
Support: http://amasty.com/support.html
It is possible to manually move
products up in the bestsellers list. For
this please fill in this field with
attribute code of the custom bestseller
attribute. You can find instructions on
how to create and use the custom
bestseller attribute in the second
section of the guide (page 10).
Products with specified
statuses will not be used
in Bestsellers.
1. Steps to configure Improved Sorting
User Guide: Improved Sorting
Page 5
Support: http://amasty.com/support.html
It is possible to manually move
products up in the most viewed list as
well. Fill in this field with attribute
code of the custom most viewed
attribute to use this feature. Steps to
create the attribute code are the same
as for bestsellers.
‘New’ sorting option
displays products in the
order they were added to
the website. If you would
like to manage product
order for this option
yourself, please create a
product attribute with
the help of which you can
specify the dates you
need. Then indicate the
attribute code here.
1. Steps to configure Improved Sorting
User Guide: Improved Sorting
Page 6
Support: http://amasty.com/support.html
You can move
products without
images to the bottom
of the product list (it is
possible to apply this
option only to catalog
page and leave the
search page as is).
If you would like to
remove ‘Position’
sorting option from
front end, please turn
this setting to ‘Yes’.
If you allow
backorders,
however would like
to show products
with zero stock
last, set this option
and the above one
to ‘Yes’.
Set ‘Yes’ to sort the
products by the highest
percentage of discount
in the ‘Biggest Savings’
ranking option.
1. Steps to configure Improved Sorting
User Guide: Improved Sorting
Page 7
Support: http://amasty.com/support.html
To have descending
sorting for some
attributes by default,
please indicate codes of
these attributes here
(separated by comma).
You can disable any
of the sorting
options, if needed.
1. Steps to configure Improved Sorting
User Guide: Improved Sorting
Page 8
Support: http://amasty.com/support.html
In case you want
products to get sorted
by Profit, specify
which attributes will
be set as Cost and
Price.
Note: the Profit
equals Cost minus
Price.
1. Steps to configure Improved Sorting
User Guide: Improved Sorting
Page 9
Support: http://amasty.com/support.html
Sorting by revenue displays
products based on their sales
amount. The sales of products for
‘Revenue’ sorting option will be
counted for the period, indicated
here.
2. Custom attributes for bestsellers and most viewed
User Guide: Improved Sorting
Page 10
Support: http://amasty.com/support.html
To create custom attributes for bestsellers and most viewed
options, please go to admin panel -> Catalog -> Attributes ->
Manage Attributes and click ‘Add new attribute’ button.
Select ‘Price’ for Catalog
Input Type setting.
Specify any attribute code
you like for the custom
attribute. You will also need
to type this code in the
extension configuration
section (page 4 of the user
guide).
2. Custom attributes for bestsellers and most viewed
User Guide: Improved Sorting
Page 11
Support: http://amasty.com/support.html
Set this option to ‘Yes’ for
the attribute specified in the
‘Custom Bestsellers
Attribute Code’ field (see
page 4).
Specify the desired title
and save the attribute.
2. Custom attributes for bestsellers and most viewed
User Guide: Improved Sorting
Page 12
Support: http://amasty.com/support.html
Assign the created attribute
to the attribute set you use
for creation of your products
in Catalog -> Attributes ->
Manage Attribute.
2. Custom attributes for bestsellers and most viewed
User Guide: Improved Sorting
Page 13
Support: http://amasty.com/support.html
The amount you specify here will
be taken instead of real sales
statistics for this product, when
the extension will define the order
of products for bestsellers sorting
option. You can create a custom
attribute and use it on analogy for
most viewed sorting option.
2. Custom attributes for bestsellers and most viewed
User Guide: Improved Sorting
Page 14
Support: http://amasty.com/support.html
The new product sorting
options are available on
‘Display Settings’ tab of
category page, so you can
specify which sorting options
to use for which category.
3. New sorting options on category page
User Guide: Improved Sorting
Page 15
Support: http://amasty.com/support.html
The new options are added
to standard Magento ones
on front end and enable
your customers to find the
right products a lot faster.
4. New sorting options on front end
User Guide: Improved Sorting
Page 16
Support: http://amasty.com/support.html
5. Creating blocks based on sorting options
You can add blocks based on sorting options to any page or CMS block for different categories. For this please add such code:
{{block type="amsorting/featured" header="DON’T MISS THE DEAL, BIGGEST SAVING YOU’VE EVER SEEN"
sorting="saving" category="8" limit="3" template="amsorting/list.phtml"}}
‘header’ variable is used for the block title.
Use ‘sorting’ variable to specify which sorting option should be used for the block. To use ‘New’ sorting option please specify
code new, for Biggest Saving – saving, Best Sellers - bestselling; Most Viewed – mostviewed, Top Rated – toprated, Review
Count – commented, Now in Wishlists – wished.
‘category’ variable allows you to choose from which category to display products in the block – just specify the category id. If
you would like to show products from the category, on which the block is displayed, please remove the variable.
‘limit’ variable enables you to specify the number of products in the block.
‘template’ variable lets you choose the template for the block. ‘amsorting/list.phtml’ is one of the templates we provide with
the extension. Please feel free to create your own ones.
At the homepage the blocks will use all store products (if not, set ‘Is Anchor’ to ‘Yes’ for store root category). At the category
pages - another category of products can be added.
Please see the next page for block examples.
User Guide: Improved Sorting
Page 17
Support: http://amasty.com/support.html
This is the block based on the
‘Biggest saving” sorting option
by category, which was created
with the code mentioned on the
previous page.
6. Examples of blocks based on sorting options
This block is based on
‘Top Rated’ option.
User Guide: Improved Sorting
Page 18
Support: http://amasty.com/support.html
Thank you!
Your feedback is absolutely welcome!
Should you have any questions or feature suggestions, please contact us at:
http://amasty.com/support.html
User Guide: Improved Sorting
Page 19
Support: http://amasty.com/support.html

Mais conteúdo relacionado

Mais de Amasty

Способы оптимизации работы с памятью в Magento 2
Способы оптимизации работы с памятью в Magento 2Способы оптимизации работы с памятью в Magento 2
Способы оптимизации работы с памятью в Magento 2Amasty
 
Magento Security from Developer's and Tester's Points of View
Magento Security from Developer's and Tester's Points of ViewMagento Security from Developer's and Tester's Points of View
Magento Security from Developer's and Tester's Points of ViewAmasty
 
A joyful shopping experience. Creating e-commerce sites that are effortless t...
A joyful shopping experience. Creating e-commerce sites that are effortless t...A joyful shopping experience. Creating e-commerce sites that are effortless t...
A joyful shopping experience. Creating e-commerce sites that are effortless t...Amasty
 
Follow up email_for_magento_2_user_guide
Follow up email_for_magento_2_user_guideFollow up email_for_magento_2_user_guide
Follow up email_for_magento_2_user_guideAmasty
 
Order Status for Magrnto 2 by Amasty
Order Status for Magrnto 2 by AmastyOrder Status for Magrnto 2 by Amasty
Order Status for Magrnto 2 by AmastyAmasty
 
Order Attributes for Magento 2
Order Attributes for Magento 2Order Attributes for Magento 2
Order Attributes for Magento 2Amasty
 
Shipping Table Rates for Magento 2 by Amasty | User Guide
Shipping Table Rates for Magento 2 by Amasty | User GuideShipping Table Rates for Magento 2 by Amasty | User Guide
Shipping Table Rates for Magento 2 by Amasty | User GuideAmasty
 
Customer Group Catalog for Magento 2. User Guide
Customer Group Catalog for Magento 2. User GuideCustomer Group Catalog for Magento 2. User Guide
Customer Group Catalog for Magento 2. User GuideAmasty
 
Product Parts Finder for Magento 2 | User Guide
Product Parts Finder for Magento 2 | User GuideProduct Parts Finder for Magento 2 | User Guide
Product Parts Finder for Magento 2 | User GuideAmasty
 
Edit Lock Magento Extension by Amasty | User Guide
Edit Lock Magento Extension by Amasty | User GuideEdit Lock Magento Extension by Amasty | User Guide
Edit Lock Magento Extension by Amasty | User GuideAmasty
 
Advanced Reports Magento Extension by Amasty | User Guide
Advanced Reports Magento Extension by Amasty | User GuideAdvanced Reports Magento Extension by Amasty | User Guide
Advanced Reports Magento Extension by Amasty | User GuideAmasty
 
A/B Testing Magento Extension by Amasty | User Guide
A/B Testing Magento Extension by Amasty | User GuideA/B Testing Magento Extension by Amasty | User Guide
A/B Testing Magento Extension by Amasty | User GuideAmasty
 
Meet Magento Belarus 2015: Andrey Tataranovich
Meet Magento Belarus 2015: Andrey TataranovichMeet Magento Belarus 2015: Andrey Tataranovich
Meet Magento Belarus 2015: Andrey TataranovichAmasty
 
Meet Magento Belarus 2015: Igor Bondarenko
Meet Magento Belarus 2015: Igor BondarenkoMeet Magento Belarus 2015: Igor Bondarenko
Meet Magento Belarus 2015: Igor BondarenkoAmasty
 
Meet Magento Belarus 2015: Kristina Pototskaya
Meet Magento Belarus 2015: Kristina PototskayaMeet Magento Belarus 2015: Kristina Pototskaya
Meet Magento Belarus 2015: Kristina PototskayaAmasty
 
Meet Magento Belarus 2015: Mladen Ristić
Meet Magento Belarus 2015: Mladen RistićMeet Magento Belarus 2015: Mladen Ristić
Meet Magento Belarus 2015: Mladen RistićAmasty
 
Meet Magento Belarus 2015: Uladzimir Kalashnikau
Meet Magento Belarus 2015: Uladzimir KalashnikauMeet Magento Belarus 2015: Uladzimir Kalashnikau
Meet Magento Belarus 2015: Uladzimir KalashnikauAmasty
 
Meet Magento Belarus 2015: Jurģis Lukss
Meet Magento Belarus 2015: Jurģis LukssMeet Magento Belarus 2015: Jurģis Lukss
Meet Magento Belarus 2015: Jurģis LukssAmasty
 
Meet Magento Belarus 2015: Sergey Lysak
Meet Magento Belarus 2015: Sergey LysakMeet Magento Belarus 2015: Sergey Lysak
Meet Magento Belarus 2015: Sergey LysakAmasty
 
Meet Magento Belarus 2015: Denis Bosak
Meet Magento Belarus 2015: Denis BosakMeet Magento Belarus 2015: Denis Bosak
Meet Magento Belarus 2015: Denis BosakAmasty
 

Mais de Amasty (20)

Способы оптимизации работы с памятью в Magento 2
Способы оптимизации работы с памятью в Magento 2Способы оптимизации работы с памятью в Magento 2
Способы оптимизации работы с памятью в Magento 2
 
Magento Security from Developer's and Tester's Points of View
Magento Security from Developer's and Tester's Points of ViewMagento Security from Developer's and Tester's Points of View
Magento Security from Developer's and Tester's Points of View
 
A joyful shopping experience. Creating e-commerce sites that are effortless t...
A joyful shopping experience. Creating e-commerce sites that are effortless t...A joyful shopping experience. Creating e-commerce sites that are effortless t...
A joyful shopping experience. Creating e-commerce sites that are effortless t...
 
Follow up email_for_magento_2_user_guide
Follow up email_for_magento_2_user_guideFollow up email_for_magento_2_user_guide
Follow up email_for_magento_2_user_guide
 
Order Status for Magrnto 2 by Amasty
Order Status for Magrnto 2 by AmastyOrder Status for Magrnto 2 by Amasty
Order Status for Magrnto 2 by Amasty
 
Order Attributes for Magento 2
Order Attributes for Magento 2Order Attributes for Magento 2
Order Attributes for Magento 2
 
Shipping Table Rates for Magento 2 by Amasty | User Guide
Shipping Table Rates for Magento 2 by Amasty | User GuideShipping Table Rates for Magento 2 by Amasty | User Guide
Shipping Table Rates for Magento 2 by Amasty | User Guide
 
Customer Group Catalog for Magento 2. User Guide
Customer Group Catalog for Magento 2. User GuideCustomer Group Catalog for Magento 2. User Guide
Customer Group Catalog for Magento 2. User Guide
 
Product Parts Finder for Magento 2 | User Guide
Product Parts Finder for Magento 2 | User GuideProduct Parts Finder for Magento 2 | User Guide
Product Parts Finder for Magento 2 | User Guide
 
Edit Lock Magento Extension by Amasty | User Guide
Edit Lock Magento Extension by Amasty | User GuideEdit Lock Magento Extension by Amasty | User Guide
Edit Lock Magento Extension by Amasty | User Guide
 
Advanced Reports Magento Extension by Amasty | User Guide
Advanced Reports Magento Extension by Amasty | User GuideAdvanced Reports Magento Extension by Amasty | User Guide
Advanced Reports Magento Extension by Amasty | User Guide
 
A/B Testing Magento Extension by Amasty | User Guide
A/B Testing Magento Extension by Amasty | User GuideA/B Testing Magento Extension by Amasty | User Guide
A/B Testing Magento Extension by Amasty | User Guide
 
Meet Magento Belarus 2015: Andrey Tataranovich
Meet Magento Belarus 2015: Andrey TataranovichMeet Magento Belarus 2015: Andrey Tataranovich
Meet Magento Belarus 2015: Andrey Tataranovich
 
Meet Magento Belarus 2015: Igor Bondarenko
Meet Magento Belarus 2015: Igor BondarenkoMeet Magento Belarus 2015: Igor Bondarenko
Meet Magento Belarus 2015: Igor Bondarenko
 
Meet Magento Belarus 2015: Kristina Pototskaya
Meet Magento Belarus 2015: Kristina PototskayaMeet Magento Belarus 2015: Kristina Pototskaya
Meet Magento Belarus 2015: Kristina Pototskaya
 
Meet Magento Belarus 2015: Mladen Ristić
Meet Magento Belarus 2015: Mladen RistićMeet Magento Belarus 2015: Mladen Ristić
Meet Magento Belarus 2015: Mladen Ristić
 
Meet Magento Belarus 2015: Uladzimir Kalashnikau
Meet Magento Belarus 2015: Uladzimir KalashnikauMeet Magento Belarus 2015: Uladzimir Kalashnikau
Meet Magento Belarus 2015: Uladzimir Kalashnikau
 
Meet Magento Belarus 2015: Jurģis Lukss
Meet Magento Belarus 2015: Jurģis LukssMeet Magento Belarus 2015: Jurģis Lukss
Meet Magento Belarus 2015: Jurģis Lukss
 
Meet Magento Belarus 2015: Sergey Lysak
Meet Magento Belarus 2015: Sergey LysakMeet Magento Belarus 2015: Sergey Lysak
Meet Magento Belarus 2015: Sergey Lysak
 
Meet Magento Belarus 2015: Denis Bosak
Meet Magento Belarus 2015: Denis BosakMeet Magento Belarus 2015: Denis Bosak
Meet Magento Belarus 2015: Denis Bosak
 

Último

FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Zilliz
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Angeliki Cooney
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...apidays
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...apidays
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKJago de Vreede
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 

Último (20)

FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 

Improved Sorting: Magento Extension by Amasty. User Guide.

  • 1. Improved Sorting Magento Extension User Guide Official extension page: Improved Sorting User Guide: Improved Sorting Page 1 Support: http://amasty.com/support.html
  • 2. Table of contents: User Guide: Improved Sorting Page 2 Support: http://amasty.com/support.html 1. Steps to configure Improved Sorting……………….…………………………..3 2. Custom attributes for bestsellers and most viewed ……………………...10 3. New sorting options on category page .………………….…………………...15 4. New sorting options on front end ……...………………….…………………..16 5. Creating blocks based on sorting options ……………………………………17 6. Examples of blocks based on sorting options ………………………………18
  • 3. 1. Steps to configure Improved Sorting User Guide: Improved Sorting Page 3 Support: http://amasty.com/support.html Please go to admin panel -> System -> Configuration -> Improved Sorting to configure the extension. The sales of products for ‘Bestsellers’ sorting option will be counted for the period, indicated here. So if you indicate ‘30’ here, sales for the last 15 days will be counted and the order of products for bestseller sorting option will be defined based on the count. We recommend to enable ‘Use Index’ option for large catalogs to improve the extension performance for sorting options ‘Best Sellers’, ‘Most Viewed’ and ‘Now in Wishlists’. For the information to be up to date, the index is refreshed automatically once per day, if you have cron enabled for your website. You can also refresh the index manually in admin panel -> System -> Index Management.
  • 4. 1. Steps to configure Improved Sorting User Guide: Improved Sorting Page 4 Support: http://amasty.com/support.html It is possible to manually move products up in the bestsellers list. For this please fill in this field with attribute code of the custom bestseller attribute. You can find instructions on how to create and use the custom bestseller attribute in the second section of the guide (page 10). Products with specified statuses will not be used in Bestsellers.
  • 5. 1. Steps to configure Improved Sorting User Guide: Improved Sorting Page 5 Support: http://amasty.com/support.html It is possible to manually move products up in the most viewed list as well. Fill in this field with attribute code of the custom most viewed attribute to use this feature. Steps to create the attribute code are the same as for bestsellers. ‘New’ sorting option displays products in the order they were added to the website. If you would like to manage product order for this option yourself, please create a product attribute with the help of which you can specify the dates you need. Then indicate the attribute code here.
  • 6. 1. Steps to configure Improved Sorting User Guide: Improved Sorting Page 6 Support: http://amasty.com/support.html You can move products without images to the bottom of the product list (it is possible to apply this option only to catalog page and leave the search page as is). If you would like to remove ‘Position’ sorting option from front end, please turn this setting to ‘Yes’. If you allow backorders, however would like to show products with zero stock last, set this option and the above one to ‘Yes’. Set ‘Yes’ to sort the products by the highest percentage of discount in the ‘Biggest Savings’ ranking option.
  • 7. 1. Steps to configure Improved Sorting User Guide: Improved Sorting Page 7 Support: http://amasty.com/support.html To have descending sorting for some attributes by default, please indicate codes of these attributes here (separated by comma). You can disable any of the sorting options, if needed.
  • 8. 1. Steps to configure Improved Sorting User Guide: Improved Sorting Page 8 Support: http://amasty.com/support.html In case you want products to get sorted by Profit, specify which attributes will be set as Cost and Price. Note: the Profit equals Cost minus Price.
  • 9. 1. Steps to configure Improved Sorting User Guide: Improved Sorting Page 9 Support: http://amasty.com/support.html Sorting by revenue displays products based on their sales amount. The sales of products for ‘Revenue’ sorting option will be counted for the period, indicated here.
  • 10. 2. Custom attributes for bestsellers and most viewed User Guide: Improved Sorting Page 10 Support: http://amasty.com/support.html To create custom attributes for bestsellers and most viewed options, please go to admin panel -> Catalog -> Attributes -> Manage Attributes and click ‘Add new attribute’ button. Select ‘Price’ for Catalog Input Type setting. Specify any attribute code you like for the custom attribute. You will also need to type this code in the extension configuration section (page 4 of the user guide).
  • 11. 2. Custom attributes for bestsellers and most viewed User Guide: Improved Sorting Page 11 Support: http://amasty.com/support.html Set this option to ‘Yes’ for the attribute specified in the ‘Custom Bestsellers Attribute Code’ field (see page 4).
  • 12. Specify the desired title and save the attribute. 2. Custom attributes for bestsellers and most viewed User Guide: Improved Sorting Page 12 Support: http://amasty.com/support.html
  • 13. Assign the created attribute to the attribute set you use for creation of your products in Catalog -> Attributes -> Manage Attribute. 2. Custom attributes for bestsellers and most viewed User Guide: Improved Sorting Page 13 Support: http://amasty.com/support.html
  • 14. The amount you specify here will be taken instead of real sales statistics for this product, when the extension will define the order of products for bestsellers sorting option. You can create a custom attribute and use it on analogy for most viewed sorting option. 2. Custom attributes for bestsellers and most viewed User Guide: Improved Sorting Page 14 Support: http://amasty.com/support.html
  • 15. The new product sorting options are available on ‘Display Settings’ tab of category page, so you can specify which sorting options to use for which category. 3. New sorting options on category page User Guide: Improved Sorting Page 15 Support: http://amasty.com/support.html
  • 16. The new options are added to standard Magento ones on front end and enable your customers to find the right products a lot faster. 4. New sorting options on front end User Guide: Improved Sorting Page 16 Support: http://amasty.com/support.html
  • 17. 5. Creating blocks based on sorting options You can add blocks based on sorting options to any page or CMS block for different categories. For this please add such code: {{block type="amsorting/featured" header="DON’T MISS THE DEAL, BIGGEST SAVING YOU’VE EVER SEEN" sorting="saving" category="8" limit="3" template="amsorting/list.phtml"}} ‘header’ variable is used for the block title. Use ‘sorting’ variable to specify which sorting option should be used for the block. To use ‘New’ sorting option please specify code new, for Biggest Saving – saving, Best Sellers - bestselling; Most Viewed – mostviewed, Top Rated – toprated, Review Count – commented, Now in Wishlists – wished. ‘category’ variable allows you to choose from which category to display products in the block – just specify the category id. If you would like to show products from the category, on which the block is displayed, please remove the variable. ‘limit’ variable enables you to specify the number of products in the block. ‘template’ variable lets you choose the template for the block. ‘amsorting/list.phtml’ is one of the templates we provide with the extension. Please feel free to create your own ones. At the homepage the blocks will use all store products (if not, set ‘Is Anchor’ to ‘Yes’ for store root category). At the category pages - another category of products can be added. Please see the next page for block examples. User Guide: Improved Sorting Page 17 Support: http://amasty.com/support.html
  • 18. This is the block based on the ‘Biggest saving” sorting option by category, which was created with the code mentioned on the previous page. 6. Examples of blocks based on sorting options This block is based on ‘Top Rated’ option. User Guide: Improved Sorting Page 18 Support: http://amasty.com/support.html
  • 19. Thank you! Your feedback is absolutely welcome! Should you have any questions or feature suggestions, please contact us at: http://amasty.com/support.html User Guide: Improved Sorting Page 19 Support: http://amasty.com/support.html