• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

Removing some link fields on view.php

ryohnosuke

Chevereto Member
Hi! I want to remove these link fields and social field (see red squares)

KNgM.png


Ya! I just deleted some DIVs on view.php and seems to work, but if I upload multiple images I have no more "multiple image" links presentation, it only show me the same standard ONE image presentation.

Saludos.
 
Problem is that was never planned. The js functions expect that those elements exists... You can check that if you open the javascript console.
The only way to fix this is observe when the elements exists (I have to edit the js file). Can you leave the changes on?
 
Ok, some major tweaks must be done on peafowl.php to made this. It will be featured on the next release.
 
I did a noobish workaround and seems to work 🙂

On view.php I've changed DIV class names to all elements that I wanted to remove:

Code:
<div class="xnput-item">

So I addded this on style.css

Code:
.xnput-item {
display: none;
}

hehe

Saludos.
 
ryohnosuke said:
I did a noobish workaround and seems to work 🙂

On view.php I've changed DIV class names to all elements that I wanted to remove:

Code:
<div class="xnput-item">

So I addded this on style.css

Code:
.xnput-item {
display: none;
}

hehe

Saludos.

Very simple way of doing it 😉 Nice job
 
ryohnosuke said:
I did a noobish workaround and seems to work 🙂

On view.php I've changed DIV class names to all elements that I wanted to remove:

Code:
<div class="xnput-item">

So I addded this on style.css

Code:
.xnput-item {
display: none;
}
I can't seem to get this to work. Was there a recent update to Chevereto that makes this not work anymore? Thanks in advance for any and all help.
 
When I edit view.php I'm having the same issue that ryohnsuke discribes below:

ryohnosuke said:
I just deleted some DIVs on view.php and seems to work, but if I upload multiple images I have no more "multiple image" links presentation, it only show me the same standard ONE image presentation.

:/
 
Back
Top