• 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.

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