How to modify products per page

You can set theĀ  attribute posts_per_page in the dzs_woo_table shortcode     [dzs_woo_table layout=”grid-clothes-shop” extra_classes=” ” show_filtered_by=”on” posts_per_page=”6″]

Filter customization – feed from

Feed from The default shortcode would look like this [dzs_woo_filter type=”multiple” label_all=”custom all” type_multiple_style=”small-checkbox” feed_from=”categories” type=”multiple” include_count=”on”] Here we are focusing on how to feed from other properties then categories Attributes   feed_from=”custom-attribute” custom_attr_name=”pa_instrument” Taxonomy ie. feed_from=”custom-taxonomy” custom_taxonomy_name=”test” Meta ie. feed_from=”custom-meta” custom_taxonomy_name=”meta_attr” Price ie. price range feed_from=”price” Ratings ie. type=”ratings”

Filter customization – types

Types The default shortcode would look like this [dzs_woo_filter type=”multiple” label_all=”custom all” type_multiple_style=”small-checkbox” feed_from=”categories” type=”multiple” include_count=”on”] we are going to focus on type attribute Multiple ie. price range   type=”multiple” Slider ie. price range type=”slider” Single with image ie. type=”single-with-image”

setup default order for shop

setting the default orderby and order in the shortcode will be enough for default order   [dzs_woo_table layout=”list-zoomsounds-with-bpm-attributes” extra_classes=”theme-light” show_filtered_by=”on” posts_per_page=”6″ default_orderby=”date” default_order=”DESC” ]   possible values for default_orderby are date, price, ratings_score and any numerical / alphabetical meta field  

add sorting button to page

Shop builder can enable your visitors to do sorting directly from a button The button is customizable demo button:   [dzs_woo_table_sorter options=”date{desc},date{asc},price{asc},price{desc},pa_bpm{asc},alphabetical{asc},alphabetical{desc},ratings_score{asc},ratings_score{desc},rand{asc}”]   any option from the options can be removed most are self explanatory newest-to-oldest – sort from newest product to oldest pa_bpm{asc} – will sort ascending by the […]