deepak-rajpal
5/7/2013 - 11:20 AM

JQuery Fancy box (in WordPress) tips (site: http://fancybox.net/ ) 1) How to remove title below light box. 2) How to remove next, previou

JQuery Fancy box (in WordPress) tips (site: http://fancybox.net/ )

  1. How to remove title below light box.
  2. How to remove next, previous button
Solution: 
1) Hide title by Removing title attribute from anchor (a) tag. 
2) Remove rel="title" to remove next, previous button on slide in <a> tag

See Example below:

Earlier:
<h2><a class="fancybox" href="#inline<?php echo get_the_ID(); ?>" rel="title" title="<?php the_title_attribute(); ?>">
   <?php the_title(); ?>
</a></h2>

Later:
<h2><a class="fancybox" href="#inline<?php echo get_the_ID(); ?>" >
   <?php the_title(); ?>
</a></h2>