Advertisement
Guest User

Untitled

a guest
Dec 19th, 2012
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. replace this line
  2.  
  3. <a href="<?php echo $slrow['url']?>" <?php echo ($slrow['urltype'] == "ext") ? "target=\"_blank\"" : "target=\"_self\"";?>><img src="<?php echo SITEURL;?>/plugins/jqueryslider/slides/<?php echo $slrow['filename']?>" alt="" title="#htmlcaption<?php echo $slrow['id']?>" /></a>
  4.  
  5. with
  6.  
  7. <a href="<?php echo $slrow['url']?>" <?php echo ($slrow['urltype'] == "ext") ? "target=\"_blank\"" : "target=\"_self\"";?>><img src="<?php echo SITEURL;?>/plugins/jqueryslider/slides/<?php echo $slrow['filename']?>" alt="" <?php if($conf['showcaption']):?>title="#htmlcaption<?php echo $slrow['id']?>"<?php else:?><?php endif;?> /></a>
  8.  
  9. This will hide the image title and description for the slider ,Thanks
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement