Title: rgfxnet's Replies | WordPress.org

---

# rgfxnet

  [  ](https://wordpress.org/support/users/rgfxnet/)

 *   [Profile](https://wordpress.org/support/users/rgfxnet/)
 *   [Topics Started](https://wordpress.org/support/users/rgfxnet/topics/)
 *   [Replies Created](https://wordpress.org/support/users/rgfxnet/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/rgfxnet/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/rgfxnet/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/rgfxnet/engagements/)
 *   [Favorites](https://wordpress.org/support/users/rgfxnet/favorites/)

 Search replies:

## Forum Replies Created

Viewing 12 replies - 1 through 12 (of 12 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Lightbox with PhotoSwipe] Nextgen Photoswipe guide.](https://wordpress.org/support/topic/nextgen-photoswipe-guide/)
 *  Thread Starter [rgfxnet](https://wordpress.org/support/users/rgfxnet/)
 * (@rgfxnet)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/nextgen-photoswipe-guide/#post-9664957)
 * Hi,
 * I dont use nextgen typically. But it was not working till I changed those values.
 * Just saving time for someone else. No issue.
 * Thanks again for the great plugin. Will be using on all builds. Hope you maintain
   it till a better photoswipe comes along.
    -  This reply was modified 8 years, 7 months ago by [rgfxnet](https://wordpress.org/support/users/rgfxnet/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gravity Slider Fields] Declaration of GF_Field_Slider: should be compatible with GF_Field](https://wordpress.org/support/topic/declaration-of-gf_field_slider-should-be-compatible-with-gf_field/)
 *  [rgfxnet](https://wordpress.org/support/users/rgfxnet/)
 * (@rgfxnet)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/declaration-of-gf_field_slider-should-be-compatible-with-gf_field/#post-9012339)
 * Me too, Bummmer. Really need this. Any alternatives?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Floating Social Bar] Facebook Button Not Aligned](https://wordpress.org/support/topic/facebook-button-not-aligned/)
 *  [rgfxnet](https://wordpress.org/support/users/rgfxnet/)
 * (@rgfxnet)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/facebook-button-not-aligned/#post-4978933)
 * Line-height is causing the issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] Custom Date range.](https://wordpress.org/support/topic/custom-date-range-1/)
 *  Thread Starter [rgfxnet](https://wordpress.org/support/users/rgfxnet/)
 * (@rgfxnet)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/custom-date-range-1/#post-3477077)
 * Jonah,
 * Any word from the developer?
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] Custom Date range.](https://wordpress.org/support/topic/custom-date-range-1/)
 *  Thread Starter [rgfxnet](https://wordpress.org/support/users/rgfxnet/)
 * (@rgfxnet)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/custom-date-range-1/#post-3477045)
 * still seem to be getting issues, but closer. Here is my code, I tried many combinations.
 *     ```
       <h1>Jan</h1>
       <?php
   
       global $post;
       $current_date = date('2013-01-01 00:00:01');
       $end_date = date(strtotime('2013-01-31 23:59:59'));
       $get_posts = tribe_get_events(array('start_date'=>$current_date,'end_date'=>$end_date,'posts_per_page'=>10) );
   
       foreach($get_posts as $post) { setup_postdata($post); ?>
       <div class="rg-events-loop">
       <div class="rg-events-date"><?php echo tribe_get_start_date($post->ID, false, 'F j, Y'); ?></div>
       <div class="rg-events-title"><h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2></div>
       </div>
       <div class="rg-events-meta-list">
       		<ul class="meta-list">
       	        <?php if( tribe_address_exists( get_the_ID() ) ) {echo '<li>' . tribe_get_full_address( get_the_ID() ) .'</li>';} ?>
       			<?php if($cfs->get('host')){echo '<li>' . $cfs->get('host') . '</li>';}?>
       			<?php if($cfs->get('event_url')){echo '<li><a href="javascript:void()" onclick="window.open(\'' . $cfs->get('event_url') .'\',\'mywindow\',\'height=600, width=800,location=no,scrollbars=yes,left=\' + (screen.width - 800) / 2 + \',top=\' + (screen.height - 600) /2);">Event Url</a></li>';}?>
       	   </ul>
       	  </div>
       <?php } //endforeach ?>
       <?php wp_reset_query(); ?>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photoswipe for NextGEN Gallery] Disable image description?](https://wordpress.org/support/topic/disable-image-description/)
 *  [rgfxnet](https://wordpress.org/support/users/rgfxnet/)
 * (@rgfxnet)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/disable-image-description/#post-3395641)
 * This is the code one needs to get it done.
 * .ps-caption{
    display:none !important; }
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] Custom Date range.](https://wordpress.org/support/topic/custom-date-range-1/)
 *  Thread Starter [rgfxnet](https://wordpress.org/support/users/rgfxnet/)
 * (@rgfxnet)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/custom-date-range-1/#post-3477041)
 * Which be as so correct? 01/22/2012 12:00:00
 * Thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] Custom Date range.](https://wordpress.org/support/topic/custom-date-range-1/)
 *  Thread Starter [rgfxnet](https://wordpress.org/support/users/rgfxnet/)
 * (@rgfxnet)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/custom-date-range-1/#post-3477039)
 * Right, but doesn’t that start from now, not a specific date that I can assign?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] Custom Date range.](https://wordpress.org/support/topic/custom-date-range-1/)
 *  Thread Starter [rgfxnet](https://wordpress.org/support/users/rgfxnet/)
 * (@rgfxnet)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/custom-date-range-1/#post-3477037)
 * I need a specific date range. Not for now till the next 5 months. The client 
   wants me to have list as so.
 * Jan
 * event 1
    event 2
 * Feb
 * event 1
    event 2
 * March
 * and so on.
 * Thanks for the response, hope to hear from you soon .
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photoswipe for NextGEN Gallery] [Plugin: Photoswipe for NextGEN Gallery] Using Fancybox for WordPress plugin with Photoswipe.](https://wordpress.org/support/topic/plugin-photoswipe-for-nextgen-gallery-using-fancybox-for-wordpress-plugin-with-photoswipe/)
 *  [rgfxnet](https://wordpress.org/support/users/rgfxnet/)
 * (@rgfxnet)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/plugin-photoswipe-for-nextgen-gallery-using-fancybox-for-wordpress-plugin-with-photoswipe/page/2/#post-3120914)
 * This worked for me, I am using Ng Gallery Optimizer Modified which uses fancybox,
   This is code one should use.
 *     ```
       jQuery(document).ready(function(){
       	//Remove thickbox effect:
       	jQuery('a.thickbox').removeClass ("thickbox");
       	//Remove lightbox effect:
       	jQuery('a[rel^="lightbox"]').attr("rel","");
       	//Remove highslide effect:
       	jQuery('a.highslide').removeClass("highslide").attr("onclick","");
       	//Remove shutter effect:
       	jQuery('a[class^=shutterset]').removeClass (function (index, css) { return (css.match (/\bshutterset\S+/g) || []).join(' '); });
       	//Remove fancybox effect:
       	jQuery('a.myfancybox').unbind('click.fb').addClass('nolightbox').removeClass('myfancybox');
       });
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] Custom Date range.](https://wordpress.org/support/topic/custom-date-range-1/)
 *  Thread Starter [rgfxnet](https://wordpress.org/support/users/rgfxnet/)
 * (@rgfxnet)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/custom-date-range-1/#post-3476980)
 * Anybody? It should be easy to point me in the right direction. Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Field Suite] Import Export](https://wordpress.org/support/topic/import-export-3/)
 *  Thread Starter [rgfxnet](https://wordpress.org/support/users/rgfxnet/)
 * (@rgfxnet)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/import-export-3/#post-3451466)
 * Err, There is export under Tools setting.

Viewing 12 replies - 1 through 12 (of 12 total)