• 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

Links to be shown

when a user uploads an image, he gets a page with the image links below like this



but when a user click the link of the image and sees it , only the image is show, the links for the image is not shown



now i need the links to be visible to the user who sees it so that he can share the url
 
Ok hmm i can't go look at the php source code right now cuz it's kina late but i'll post it up tomorrow.


(I have already looked up the div id you need to switch: #share from display:none to display:block
If this doesn't make scene, i'll explain tomorrow 😀. now time for bed.
)
 
Ok. hhmm looked at the code now. the lines are 227 and 230.
This is what you have to do;

Find this:
Code:
<div id="tools"><div id="fullsize"<? if ($ancho<=900) { echo ' style="display: none; "'; }?>><a href="<?=PATH_SCRIPT.DIR_IM.$folhost.$name?>" title="<?=$ancho?>x<?=$alto?>"><?=FULL_SIZE;?></a></div><div id="sharethis"><a id="sharing"><?=SHARE;?></a><a id="sharing-close" style="display: none;"><?=SHARE;?></a></div></div>

And replace it with this
Code:
<div id="tools"><div id="fullsize"<? if ($ancho<=900) { echo ' style="display: none; "'; }?>><a href="<?=PATH_SCRIPT.DIR_IM.$folhost.$name?>" title="<?=$ancho?>x<?=$alto?>"><?=FULL_SIZE;?></a></div><div id="sharethis"><a id="sharing" style="display: none;"><?=SHARE;?></a><a id="sharing-close"><?=SHARE;?></a></div></div>

Now find this
Code:
 <div id="share" <? if (isset($v) && $v!=='rec.php') { ?>style="display: none;"<? } ?>>

replace with
Code:
    <div id="share">

That should be all. if it's not clear just ask.
 
Back
Top