Topic: Links to be shown
i want the links to be shown when people see the image, so where is the code in index.php to be edited to do so ?
You are not logged in. Please login or register.
i want the links to be shown when people see the image, so where is the code in index.php to be edited to do so ?
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
Last edited by ImageScraps (2010-04-02 15:53:48)
I hope you understood ![]()
Last edited by ImageScraps (2010-04-02 15:54:04)
Ahh, there is a button called share on the top. click it and watch ![]()
Ya its cool but i want it to be present at the bottom of the picture by default what code to be removed ?
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.
)
mate i didnt understand explain it when you are free thnx ![]()
Ok. hhmm looked at the code now. the lines are 227 and 230.
This is what you have to do;
Find this:
<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
<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
<div id="share" <? if (isset($v) && $v!=='rec.php') { ?>style="display: none;"<? } ?>>replace with
<div id="share">That should be all. if it's not clear just ask.
Powered by PunBB, supported by Informer Technologies, Inc.
Powered by PunBB