• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.
  • Chevereto Support CLST

    Support response

    Support checklist

    • ⚠️ Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • ✅ Confirm that the server meets the System Requirements
    • 🔥 Check for any available Hotfix - your issue could be already reported/fixed
    • 📚 Read documentation - It will be required to Debug and understand Errors for a faster support response

Home Page style like Explore style

makaja2

Chevereto Member
Hi,
I need modify my home page style like explore but only show images from userid, and of course it endless scrolling, i try to make it but when it loading page 2, it show all images.

Please help me, thanks
Sorry for my bad english
 
Best that you can do is to copy explore.php to index.php and add this to the list procedures:

PHP:
$home_user = CHV\User::getSingle(CHV\get_chv_setting('theme_peafowl_home_uid'));
$list->setWhere('WHERE image_user_id=:user_id');
$list->bind(":user_id", $home_user['id']);

Also in the tabs loop (in the same file):
PHP:
foreach($tabs as $k => $v) {

you will need to add something like this:

PHP:
$tabs[$k]["params_hidden"] = "userid=" . $home_user['id'];
 
Yeah i try but it not load more page, tab not working, and can you help me make this style homepage like old homepage, just show image, not show album, uploader .....
Thanks
 
That is how you do it I'm sorry but at this time I'm focused in release more features and things like that so I can provide you the full code for that at this time. Maybe when the script gets more features it will be easier for me to help more deeply in customization like this.
 
That is how you do it I'm sorry but at this time I'm focused in release more features and things like that so I can provide you the full code for that at this time. Maybe when the script gets more features it will be easier for me to help more deeply in customization like this.
Ok i'll waiting u, focus for new version and comeback help me when u done ^^
 
Back
Top