SlideShare a Scribd company logo
1 of 19
Download to read 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

More Related Content

More from 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
 

More from 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
 

Recently uploaded

Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxBkGupta21
 

Recently uploaded (20)

Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.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