L luckbucks Chevereto Member Oct 10, 2014 #1 Hello, How would I go about increasing the # of images shown on the homepage? (Not the explore page). Currently, it looks like it is set to 8. Please forgive me if this has been asked before. Thanks for your help
Hello, How would I go about increasing the # of images shown on the homepage? (Not the explore page). Currently, it looks like it is set to 8. Please forgive me if this has been asked before. Thanks for your help
Rodolfo 🥑 Chevereto Godlike Chevereto Staff Administrator Oct 10, 2014 #3 Add this code to Dashboard > Theme > Custom CSS: Code: #home-pics-feature { height: 1000px;} It could be 1000px or anything you want. Then in app/themes/Peafowl/views/index.php this controls how many images are displayed: PHP: $list->setLimit(15);
Add this code to Dashboard > Theme > Custom CSS: Code: #home-pics-feature { height: 1000px;} It could be 1000px or anything you want. Then in app/themes/Peafowl/views/index.php this controls how many images are displayed: PHP: $list->setLimit(15);
Rodolfo 🥑 Chevereto Godlike Chevereto Staff Administrator Oct 11, 2014 #8 Yeah you need to test if 1000px, 2000px or even more is good for you. 1000px was just an example.