SlideShare a Scribd company logo
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 2
Amasty
 
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
Amasty
 
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_guide
Amasty
 
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
Amasty
 
Order Attributes for Magento 2
Order Attributes for Magento 2Order Attributes for Magento 2
Order Attributes for Magento 2
Amasty
 
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
Amasty
 
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
Amasty
 
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
Amasty
 
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
Amasty
 
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
Amasty
 
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
Amasty
 
Meet Magento Belarus 2015: Andrey Tataranovich
Meet Magento Belarus 2015: Andrey TataranovichMeet Magento Belarus 2015: Andrey Tataranovich
Meet Magento Belarus 2015: Andrey Tataranovich
Amasty
 
Meet Magento Belarus 2015: Igor Bondarenko
Meet Magento Belarus 2015: Igor BondarenkoMeet Magento Belarus 2015: Igor Bondarenko
Meet Magento Belarus 2015: Igor Bondarenko
Amasty
 
Meet Magento Belarus 2015: Kristina Pototskaya
Meet Magento Belarus 2015: Kristina PototskayaMeet Magento Belarus 2015: Kristina Pototskaya
Meet Magento Belarus 2015: Kristina Pototskaya
Amasty
 
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 Kalashnikau
Amasty
 
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
Amasty
 
Meet Magento Belarus 2015: Sergey Lysak
Meet Magento Belarus 2015: Sergey LysakMeet Magento Belarus 2015: Sergey Lysak
Meet Magento Belarus 2015: Sergey Lysak
Amasty
 
Meet Magento Belarus 2015: Denis Bosak
Meet Magento Belarus 2015: Denis BosakMeet Magento Belarus 2015: Denis Bosak
Meet Magento Belarus 2015: Denis Bosak
Amasty
 

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

Containers & AI - Beauty and the Beast!?!
Containers & AI - Beauty and the Beast!?!Containers & AI - Beauty and the Beast!?!
Containers & AI - Beauty and the Beast!?!
Tobias Schneck
 
Session 1 - Intro to Robotic Process Automation.pdf
Session 1 - Intro to Robotic Process Automation.pdfSession 1 - Intro to Robotic Process Automation.pdf
Session 1 - Intro to Robotic Process Automation.pdf
UiPathCommunity
 
AI in the Workplace Reskilling, Upskilling, and Future Work.pptx
AI in the Workplace Reskilling, Upskilling, and Future Work.pptxAI in the Workplace Reskilling, Upskilling, and Future Work.pptx
AI in the Workplace Reskilling, Upskilling, and Future Work.pptx
Sunil Jagani
 
Call Girls Chandigarh🔥7023059433🔥Agency Profile Escorts in Chandigarh Availab...
Call Girls Chandigarh🔥7023059433🔥Agency Profile Escorts in Chandigarh Availab...Call Girls Chandigarh🔥7023059433🔥Agency Profile Escorts in Chandigarh Availab...
Call Girls Chandigarh🔥7023059433🔥Agency Profile Escorts in Chandigarh Availab...
manji sharman06
 
Must Know Postgres Extension for DBA and Developer during Migration
Must Know Postgres Extension for DBA and Developer during MigrationMust Know Postgres Extension for DBA and Developer during Migration
Must Know Postgres Extension for DBA and Developer during Migration
Mydbops
 
JavaLand 2024: Application Development Green Masterplan
JavaLand 2024: Application Development Green MasterplanJavaLand 2024: Application Development Green Masterplan
JavaLand 2024: Application Development Green Masterplan
Miro Wengner
 
Apps Break Data
Apps Break DataApps Break Data
Apps Break Data
Ivo Velitchkov
 
inQuba Webinar Mastering Customer Journey Management with Dr Graham Hill
inQuba Webinar Mastering Customer Journey Management with Dr Graham HillinQuba Webinar Mastering Customer Journey Management with Dr Graham Hill
inQuba Webinar Mastering Customer Journey Management with Dr Graham Hill
LizaNolte
 
Poznań ACE event - 19.06.2024 Team 24 Wrapup slidedeck
Poznań ACE event - 19.06.2024 Team 24 Wrapup slidedeckPoznań ACE event - 19.06.2024 Team 24 Wrapup slidedeck
Poznań ACE event - 19.06.2024 Team 24 Wrapup slidedeck
FilipTomaszewski5
 
Essentials of Automations: Exploring Attributes & Automation Parameters
Essentials of Automations: Exploring Attributes & Automation ParametersEssentials of Automations: Exploring Attributes & Automation Parameters
Essentials of Automations: Exploring Attributes & Automation Parameters
Safe Software
 
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
Jason Yip
 
A Deep Dive into ScyllaDB's Architecture
A Deep Dive into ScyllaDB's ArchitectureA Deep Dive into ScyllaDB's Architecture
A Deep Dive into ScyllaDB's Architecture
ScyllaDB
 
What is an RPA CoE? Session 1 – CoE Vision
What is an RPA CoE?  Session 1 – CoE VisionWhat is an RPA CoE?  Session 1 – CoE Vision
What is an RPA CoE? Session 1 – CoE Vision
DianaGray10
 
Lee Barnes - Path to Becoming an Effective Test Automation Engineer.pdf
Lee Barnes - Path to Becoming an Effective Test Automation Engineer.pdfLee Barnes - Path to Becoming an Effective Test Automation Engineer.pdf
Lee Barnes - Path to Becoming an Effective Test Automation Engineer.pdf
leebarnesutopia
 
GlobalLogic Java Community Webinar #18 “How to Improve Web Application Perfor...
GlobalLogic Java Community Webinar #18 “How to Improve Web Application Perfor...GlobalLogic Java Community Webinar #18 “How to Improve Web Application Perfor...
GlobalLogic Java Community Webinar #18 “How to Improve Web Application Perfor...
GlobalLogic Ukraine
 
GNSS spoofing via SDR (Criptored Talks 2024)
GNSS spoofing via SDR (Criptored Talks 2024)GNSS spoofing via SDR (Criptored Talks 2024)
GNSS spoofing via SDR (Criptored Talks 2024)
Javier Junquera
 
Leveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and StandardsLeveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and Standards
Neo4j
 
Mutation Testing for Task-Oriented Chatbots
Mutation Testing for Task-Oriented ChatbotsMutation Testing for Task-Oriented Chatbots
Mutation Testing for Task-Oriented Chatbots
Pablo Gómez Abajo
 
ScyllaDB Tablets: Rethinking Replication
ScyllaDB Tablets: Rethinking ReplicationScyllaDB Tablets: Rethinking Replication
ScyllaDB Tablets: Rethinking Replication
ScyllaDB
 
"Choosing proper type of scaling", Olena Syrota
"Choosing proper type of scaling", Olena Syrota"Choosing proper type of scaling", Olena Syrota
"Choosing proper type of scaling", Olena Syrota
Fwdays
 

Recently uploaded (20)

Containers & AI - Beauty and the Beast!?!
Containers & AI - Beauty and the Beast!?!Containers & AI - Beauty and the Beast!?!
Containers & AI - Beauty and the Beast!?!
 
Session 1 - Intro to Robotic Process Automation.pdf
Session 1 - Intro to Robotic Process Automation.pdfSession 1 - Intro to Robotic Process Automation.pdf
Session 1 - Intro to Robotic Process Automation.pdf
 
AI in the Workplace Reskilling, Upskilling, and Future Work.pptx
AI in the Workplace Reskilling, Upskilling, and Future Work.pptxAI in the Workplace Reskilling, Upskilling, and Future Work.pptx
AI in the Workplace Reskilling, Upskilling, and Future Work.pptx
 
Call Girls Chandigarh🔥7023059433🔥Agency Profile Escorts in Chandigarh Availab...
Call Girls Chandigarh🔥7023059433🔥Agency Profile Escorts in Chandigarh Availab...Call Girls Chandigarh🔥7023059433🔥Agency Profile Escorts in Chandigarh Availab...
Call Girls Chandigarh🔥7023059433🔥Agency Profile Escorts in Chandigarh Availab...
 
Must Know Postgres Extension for DBA and Developer during Migration
Must Know Postgres Extension for DBA and Developer during MigrationMust Know Postgres Extension for DBA and Developer during Migration
Must Know Postgres Extension for DBA and Developer during Migration
 
JavaLand 2024: Application Development Green Masterplan
JavaLand 2024: Application Development Green MasterplanJavaLand 2024: Application Development Green Masterplan
JavaLand 2024: Application Development Green Masterplan
 
Apps Break Data
Apps Break DataApps Break Data
Apps Break Data
 
inQuba Webinar Mastering Customer Journey Management with Dr Graham Hill
inQuba Webinar Mastering Customer Journey Management with Dr Graham HillinQuba Webinar Mastering Customer Journey Management with Dr Graham Hill
inQuba Webinar Mastering Customer Journey Management with Dr Graham Hill
 
Poznań ACE event - 19.06.2024 Team 24 Wrapup slidedeck
Poznań ACE event - 19.06.2024 Team 24 Wrapup slidedeckPoznań ACE event - 19.06.2024 Team 24 Wrapup slidedeck
Poznań ACE event - 19.06.2024 Team 24 Wrapup slidedeck
 
Essentials of Automations: Exploring Attributes & Automation Parameters
Essentials of Automations: Exploring Attributes & Automation ParametersEssentials of Automations: Exploring Attributes & Automation Parameters
Essentials of Automations: Exploring Attributes & Automation Parameters
 
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
[OReilly Superstream] Occupy the Space: A grassroots guide to engineering (an...
 
A Deep Dive into ScyllaDB's Architecture
A Deep Dive into ScyllaDB's ArchitectureA Deep Dive into ScyllaDB's Architecture
A Deep Dive into ScyllaDB's Architecture
 
What is an RPA CoE? Session 1 – CoE Vision
What is an RPA CoE?  Session 1 – CoE VisionWhat is an RPA CoE?  Session 1 – CoE Vision
What is an RPA CoE? Session 1 – CoE Vision
 
Lee Barnes - Path to Becoming an Effective Test Automation Engineer.pdf
Lee Barnes - Path to Becoming an Effective Test Automation Engineer.pdfLee Barnes - Path to Becoming an Effective Test Automation Engineer.pdf
Lee Barnes - Path to Becoming an Effective Test Automation Engineer.pdf
 
GlobalLogic Java Community Webinar #18 “How to Improve Web Application Perfor...
GlobalLogic Java Community Webinar #18 “How to Improve Web Application Perfor...GlobalLogic Java Community Webinar #18 “How to Improve Web Application Perfor...
GlobalLogic Java Community Webinar #18 “How to Improve Web Application Perfor...
 
GNSS spoofing via SDR (Criptored Talks 2024)
GNSS spoofing via SDR (Criptored Talks 2024)GNSS spoofing via SDR (Criptored Talks 2024)
GNSS spoofing via SDR (Criptored Talks 2024)
 
Leveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and StandardsLeveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and Standards
 
Mutation Testing for Task-Oriented Chatbots
Mutation Testing for Task-Oriented ChatbotsMutation Testing for Task-Oriented Chatbots
Mutation Testing for Task-Oriented Chatbots
 
ScyllaDB Tablets: Rethinking Replication
ScyllaDB Tablets: Rethinking ReplicationScyllaDB Tablets: Rethinking Replication
ScyllaDB Tablets: Rethinking Replication
 
"Choosing proper type of scaling", Olena Syrota
"Choosing proper type of scaling", Olena Syrota"Choosing proper type of scaling", Olena Syrota
"Choosing proper type of scaling", Olena Syrota
 

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