• I have been having some issues getting the photo categories that show up in the demo version to show up in my page.

    I would also like to add more than simply 3 categories in the main page. How can this be done?

Viewing 1 replies (of 1 total)
  • Theme Author badjohnny

    (@badjohnny)

    Hi

    Please add the following custom PHP codes into functions.php

    add_filter('lithestore_product_categories_args','my_product_category_pictures');
    function my_product_category_pictures(){
      return array(
    	  'limit' => 6,
    	  'columns'=> 3,
    	  'child_categories'=> 0,
    	  'orderby' => 'name',
    	  'title'=> __( 'Product Categories', 'lithestore' ),
            );
    }

    ‘limit’ value means the number of categories. ‘columns’ value can be 2,3,4
    So you can change the value to what you want.

    Thanks

Viewing 1 replies (of 1 total)
  • The topic ‘Help! My categories do not show up in main page’ is closed to new replies.