HB88 APK.REGISTER NOW GET FREE 888 PESOS REWARDS! https://www.ads-software.com/support/plugin/recent-posts-flexslider/feed Fri, 22 Nov 2024 10:40:45 +0000 https://bbpress.org/?v=2.7.0-alpha-2 en-US https://www.ads-software.com/support/topic/flexslider-generate-canonical-links/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Flexslider generate canonical links]]> https://www.ads-software.com/support/topic/flexslider-generate-canonical-links/ Sat, 06 Aug 2022 06:22:26 +0000 sandeepolbuz Replies: 2

Hi
i have used flexslider in the below URL :
https://www.sreestours.com/1-night-2-days-trivandrum-kovalam-weekend-tour-package.html

it will create seperate pages for the slider images which is indexed by the google

I want to stop to generate those pages

Here you can check the link generated by above page’s slider :

https://www.sreestours.com/1-night-2-days-trivandrum-kovalam-weekend-tour-package.html/kovalam_hawah_beach

Please help if anyone is having any idea.

]]>
https://www.ads-software.com/support/topic/flexslider-excerpt/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>flexslider excerpt]]> https://www.ads-software.com/support/topic/flexslider-excerpt/ Wed, 01 Jul 2020 00:11:22 +0000 kaquna Replies: 3

hi

in the file views/display.php, the line 82 is:


$output .= '<p>' . $display->recent_post_flexslider_excerpt( get_the_content(), $excerpt_length ) . '</p>';

although it is referring to the extract, it shows the content…

how can I replace this line by substituting “get_the_content()” for “get_the_excerpt()” so that with each update I don’t have to change it every time?

I tried putting the file in the child theme but it doesn’t work.

thanks

]]>
https://www.ads-software.com/support/topic/patch-for-new-feature-show-only-posts-with-featured-image/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Patch for new feature: show only posts with featured image]]> https://www.ads-software.com/support/topic/patch-for-new-feature-show-only-posts-with-featured-image/ Mon, 20 Jan 2020 22:15:50 +0000 Giuseppe Replies: 3

Hi David, I have seen your new release, with my credit.
Thanks.
Here is a patch I wrote to add a new feature. With this patch user can chose to show in the slider only posts with featured image. Is just one more options, and these are just a few lines. Decision is up to you.


diff -ruN ./recent-posts-flexslider-orig/recent-posts-flexslider.php ./recent-posts-flexslider/recent-posts-flexslider.php
--- ./recent-posts-flexslider-orig/recent-posts-flexslider.php	2020-01-19 13:45:14.000000000 +0100
+++ ./recent-posts-flexslider/recent-posts-flexslider.php	2020-01-20 23:06:08.519513743 +0100
@@ -92,6 +92,7 @@
 		$post_title       = $instance['post_title'];
 		$post_excerpt     = $instance['post_excerpt'];
 		$post_link        = $instance['post_link'];
+		$only_thumb_post  = $instance['only_thumb_post'];
 
 		echo $before_widget;
 
@@ -135,6 +136,7 @@
 		$instance['post_title']       = isset( $new_instance['post_title'] ) ? 'true' : 'false';
 		$instance['post_excerpt']     = isset( $new_instance['post_excerpt'] ) ? 'true' : 'false';
 		$instance['post_link']        = isset( $new_instance['post_link'] ) ? 'true' : 'false';
+		$instance['only_thumb_post']  = isset( $new_instance['only_thumb_post'] ) ? 'true' : 'false';
 
 		return $instance;
 
@@ -163,6 +165,7 @@
 			'post_excerpt'     => 'true',
 			'excerpt_length'   => 20,
 			'post_link'        => 'true',
+			'only_thumb_post'  => 'true',
 		);
 		$instance = wp_parse_args( (array) $instance, $defaults );
 
diff -ruN ./recent-posts-flexslider-orig/views/admin.php ./recent-posts-flexslider/views/admin.php
--- ./recent-posts-flexslider-orig/views/admin.php	2020-01-19 13:45:14.000000000 +0100
+++ ./recent-posts-flexslider/views/admin.php	2020-01-20 23:01:38.427302734 +0100
@@ -112,6 +112,7 @@
 				} else {
 					if ( isset( $_wp_additional_image_sizes ) && isset( $_wp_additional_image_sizes[ $s ] ) ) {
 						$sizes[ $s ] = array( $_wp_additional_image_sizes[ $s ]['width'], $_wp_additional_image_sizes[ $s ]['height'] );
+
 					}
 				}
 			}
@@ -165,4 +166,9 @@
 		<input id="<?php echo esc_attr( $this->get_field_id( 'excerpt_length' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'excerpt_length' ) ); ?>" value="<?php echo esc_attr( $instance['excerpt_length'] ); ?>" type="text" />
 	</div>
 
+	<div class="checkbox-wrap">
+		<input class="checkbox" type="checkbox" <?php checked( $instance['only_thumb_post'], 'true' ); ?> id="<?php echo esc_attr( $this->get_field_id( 'only_thumb_post' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'only_thumb_post' ) ); ?>" value="true" />
+		<label for="<?php echo esc_attr( $this->get_field_id( 'only_thumb_post' ) ); ?>"><?php esc_attr_e( 'Only posts with featured image', 'only_thumb_post' ); ?></label>
+	</div>
+	
 </div>
diff -ruN ./recent-posts-flexslider-orig/views/display.php ./recent-posts-flexslider/views/display.php
--- ./recent-posts-flexslider-orig/views/display.php	2019-02-21 14:01:22.000000000 +0100
+++ ./recent-posts-flexslider/views/display.php	2020-01-20 23:02:45.787565897 +0100
@@ -28,6 +28,10 @@
 	'ignore_sticky_posts' => true,
 );
 
+if (esc_attr( $only_thumb_post ) == 'true') {
+	$flex_args['meta_query'] = array( array ( 'key' => '_thumbnail_id', 'compare' => 'EXISTS', ));
+}
+
 $flex_query = new WP_Query( $flex_args );
 
 // Call class to display slider
]]>
https://www.ads-software.com/support/topic/impossible-to-select-image-size-in-admin-view/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Impossible to select image size in admin view]]> https://www.ads-software.com/support/topic/impossible-to-select-image-size-in-admin-view/ Fri, 17 Jan 2020 19:38:30 +0000 Giuseppe Replies: 1

Hi, I have found an error in your code in file views/admin.php .
This error make impossible to select image size other than “Full Size”.
Error is in line 125, where you remove html tags from an html formatted string.

This is the patch to correct the bug:


@@ -118,12 +118,12 @@
 
 			$option_image_size = '';
 			foreach ( $sizes as $size => $atts ) {
-				$option_image_size     .= '<option value="' . $size . '"' . selected( $instance['image_size'], $size, false ) . '>';
+				$option_image_size     .= '<option value="' . esc_attr( $size ). '"' . esc_attr( selected( $instance['image_size'], $size, false )) . '>';
 					$option_image_size .= ucwords( preg_replace( '/-/', ' ', $size ) ) . ' (' . implode( 'x', $atts ) . ')';
 				$option_image_size     .= '</option>';
 			}
-			echo esc_attr( $option_image_size );
-			?>
+			echo $option_image_size;
+			?>
 		</select>
 	</div>
  • This topic was modified 4 years, 10 months ago by Giuseppe.
]]>
https://www.ads-software.com/support/topic/slider-css-not-loading-in-2-1-1/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>slider.css not loading in 2.1.1]]> https://www.ads-software.com/support/topic/slider-css-not-loading-in-2-1-1/ Thu, 21 Feb 2019 12:43:15 +0000 butleraj Replies: 1

Hi David,

There’s a bug in v2.1.1 of the plugin that prevents slider.css from loading.

The name of the stylesheet in recent-posts-flexslider.php function register_recent_posts_flexslider_styles has been changed from ‘recent-posts-flexslider-widget-styles’ to ‘recent-posts-flexslider-style’. However this change has not been reflected in views/display.php. This results in the stylesheet not loading.

Regards,
Adam

]]>
https://www.ads-software.com/support/topic/missing-css-fonts-directory-files/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Missing css/fonts/ directory & files]]> https://www.ads-software.com/support/topic/missing-css-fonts-directory-files/ Sun, 13 Jan 2019 20:26:42 +0000 Brian Brown, Ph.D. Replies: 2

Plugin calls /css/fonts/ directory and files missing:
fonts/flexslider-icon.eot
fonts/flexslider-icon.woff
fonts/flexslider-icon.ttf
fonts/flexslider-icon.svg

-Brian Brown, Ph.D.

]]>
https://www.ads-software.com/support/topic/custom-text-generation/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>custom text generation]]> https://www.ads-software.com/support/topic/custom-text-generation/ Sun, 04 Nov 2018 21:42:03 +0000 rlance Replies: 2

I need to call my custom prices generator for each woocommerce flexslider product image. How can I hook into your code which auto-syncs beautifully with the product gallery slides?

I would figure it out myself if you would post (or send me) your original code, as I find the minified js difficult to puzzle out.

]]>
https://www.ads-software.com/support/topic/post-title-missing-from-slider/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Post title missing from slider]]> https://www.ads-software.com/support/topic/post-title-missing-from-slider/ Sun, 19 Aug 2018 23:43:36 +0000 rspence27278 Replies: 10

After updating to 2.0, the title on the slider is now missing. There is also a lot of whitespace at the top of the image.

]]>
https://www.ads-software.com/support/topic/bug-with-our-site/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>bug with our site]]> https://www.ads-software.com/support/topic/bug-with-our-site/ Tue, 23 Jan 2018 12:30:26 +0000 AngeloLazzari Replies: 10

we installed your plugin in our site and the main slider of the theme stopped to work correctly…. the big slider picture won’t display anymore and if i disable your plugin the images displays with no problem….

can you check the bug with this data?

this is the theme we use: https://themeforest.net/item/smartmag-responsive-retina-wordpress-magazine/6652608

Thank you very much

]]>
https://www.ads-software.com/support/topic/slider-not-visible-4/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Slider not visible]]> https://www.ads-software.com/support/topic/slider-not-visible-4/ Tue, 23 May 2017 13:39:08 +0000 mpeivandi Replies: 2

Hi,
I installed the plugin, but the posts are not visible. In fact, right when the page loads, for a illisecond you can see the post there, but immediately dissapears. I tested adding this code:
`.flexslider .slides > li {
clear: none;
}
which did not work. Please advise.
My site: trte.ir

  • This topic was modified 7 years, 6 months ago by mpeivandi.
]]>
https://www.ads-software.com/support/topic/add-short-post-description/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Add short post description]]> https://www.ads-software.com/support/topic/add-short-post-description/ Wed, 22 Feb 2017 00:22:36 +0000 Tennis Life Magazine Replies: 1

Hi ?? I love your plugin, and was wondering if there are plans to add a short post description underneath the title? And if not, is there a way to stretch the transparent background of the title to be 100%? Thanks so much ??

]]>
https://www.ads-software.com/support/topic/how-hard-it-is/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>How hard it is?]]> https://www.ads-software.com/support/topic/how-hard-it-is/ Wed, 15 Feb 2017 09:58:11 +0000 jazzymef Replies: 1

How hard it is to put information about using your this plugin? Is it a shortcode? Is it appear anywhere? Put it in the FAQ please.

  • This topic was modified 7 years, 9 months ago by jazzymef.
]]>
https://www.ads-software.com/support/topic/images-and-title-not-showing/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Images and title not showing]]> https://www.ads-software.com/support/topic/images-and-title-not-showing/ Tue, 17 Jan 2017 10:00:24 +0000 Liz_S Replies: 6

I am trying this plugin for the first time. It is only showing a very large white area with navigation arrows and buttons at the bottom but no post images or titles are visible.

If I inspect the code (when viewing the page), the title and images are there in the code but they are not visible in the widget in the sidebar. Please help.

website: https://theunlikelybookworm.com/

]]>
https://www.ads-software.com/support/topic/title-not-appearing-2/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Title Not Appearing]]> https://www.ads-software.com/support/topic/title-not-appearing-2/ Sun, 01 Jan 2017 21:29:13 +0000 jordanbeckwagner Replies: 3

Hi David!

I had this same issue about 18 months ago where the title on the slider disappeared. You suggested I add this coding which worked:

.flexslider-caption-inner h3,
.flexslider-caption-inner p{
color: #000000;
}

However, the title isn’t appearing again. Any suggestions? Thanks so much!

]]>
https://www.ads-software.com/support/topic/maybe-a-bug/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Maybe a bug?]]> https://www.ads-software.com/support/topic/maybe-a-bug/ Wed, 16 Nov 2016 02:57:46 +0000 mr108 Replies: 1

Hi David,

I’m using this slider integrated into a theme on the Portfolio page: https://terrybraunstein.com/portfolio1/

There is something that is not right when viewing the portfolio items but I’m not sure if it’s due to some bug in the slider or in the navigation code in the single portfolio page itself.

Here is the problem:
When you select one of the Portfolio Categories, e.g. ‘Sculpture’ (last on the right) and click on the second item from the top-left (‘Ladder Dreams’) and once it opens, if you click on the ‘Next’ button in the top-right corner to view next item in the ‘Sculpture’ category, then completely unrelated item from ‘Artists Books’ category comes up – (‘My Bookhouse:…’). And if you click on ‘Previous’ button instead when viewing ‘Ladder Dreams’ then ‘Empty Nest – 1988’ which is from ‘Photography’ Category comes up.

I’m including below the code for the single porfolio page what has in it the code for the slider as well.

Can you see where the bug is located?

Thanks

Marek

the code:

<?php get_header(); ?>
		
	<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
	
		<?php 
			$desired_width = 813;
			$desired_height = 613;
			$current_post_id = $post->ID;
			$terms = get_the_terms($current_post_id, 'portfolio_category', 'string');
			$num_of_terms = count($terms);
			$content_post = get_post($current_post_id);
			$content = $content_post->post_content;
			$content = apply_filters('the_content', $content);
			$content = str_replace(']]>', ']]>', $content);
			$post = get_post($current_post_id); 
			
			// Prev and Next Post IDs
			$adjacent_ids = onioneye_get_next_and_prev_ids($current_post_id); 
			$prev_id = $adjacent_ids[0]; 
			$next_id = $adjacent_ids[1]; 
			
			// Metabox Values
			$image_list = get_post_meta($current_post_id, 'onioneye_image_list', true);
			$client = get_post_meta($current_post_id, 'onioneye_client', true); 
			$project_url = get_post_meta($current_post_id, 'onioneye_item_url', true);
			$is_pub_date_displayed = get_post_meta($current_post_id, 'onioneye_publication_date', true); 
			$video_embed_code = get_post_meta($current_post_id, 'onioneye_embed_code', true); 
			
		    $no_of_columns = 0; 
		    
		    if($is_pub_date_displayed) {
				$no_of_columns++;  
		    }
			if($terms) {
				$no_of_columns++; 	
			}
			if($client) {
				$no_of_columns++;
			}
			if($project_url) {
				$no_of_columns++;
			}			
		?>
		
		<div class="portfolio-item-wrapper group">
			<div class="single-portfolio-item group">
			
				<div class="mobile-nav-container">
					<h1 class="item-title"><?php echo get_the_title($current_post_id); ?></h1>
					
					<div class="mobile-post-nav group">
					
						<?php if($prev_id && $next_id) { ?>			
						
							<a class="next-portfolio-post mobile-nav-btn" rel="next" href="#" data-post_id="<?php echo esc_attr($next_id); ?>">
								<span><?php esc_html_e( 'Next post', 'onioneye' ); ?></span>
							</a>
							<a class="prev-portfolio-post mobile-nav-btn" rel="prev" href="#" data-post_id="<?php echo esc_attr($prev_id); ?>">
								<span><?php esc_html_e( 'Prev post', 'onioneye' ); ?></span>
							</a>
							
						<?php } else if ($prev_id) { ?>
							
							<div class="next-nav-placeholder mobile-nav-btn">
								<span><?php esc_html_e( 'Next post', 'onioneye' ); ?></span>
							</div>
							<a class="prev-portfolio-post mobile-nav-btn" href="#" data-post_id="<?php echo esc_attr($prev_id); ?>">
								<span><?php esc_html_e( 'Prev post', 'onioneye' ); ?></span>
							</a>
				
						<?php } else if ($next_id) { ?>
				
							<a class="next-portfolio-post mobile-nav-btn" href="#" data-post_id="<?php echo esc_attr($next_id); ?>">
								<span><?php esc_html_e( 'Next post', 'onioneye' ); ?></span>
							</a>
							<div class="prev-nav-placeholder mobile-nav-btn">
								<span><?php esc_html_e( 'Prev post', 'onioneye' ); ?></span>
							</div>
					
						<?php } ?>
						
					</div><!-- /.mobile-post-nav -->
				</div><!-- /.mobile-nav-container -->
				
				<section class="item-content">
							
					<?php if(!empty($image_list)) { ?>
					
						<div class="metabox-media-files">
							
							<?php 						
								if(!empty($image_list) && count($image_list) === 1) {
									
									$portfolio_img_url = reset($image_list);
									$portfolio_img_id = key($image_list);
								
									$img_meta = wp_get_attachment_image_src($portfolio_img_id, 'full-size');
									$image_full_width = $img_meta[1];
									$image_full_height = $img_meta[2];
									$alt_attr = get_post_meta($portfolio_img_id, '_wp_attachment_image_alt', true);
									$img_caption = get_post($portfolio_img_id)->post_excerpt; 
									
									/* find the "desired height" of the current thumbnail, relative to the desired width */
									if($image_full_width && $image_full_height) { 
										$desired_height = floor($image_full_height * ($desired_width / $image_full_width));
									}
									
									$thumb = onioneye_get_attachment_id_from_src($portfolio_img_url);
									$image = onioneye_vt_resize($thumb, '', $desired_width, $desired_height, true);
											    
									if( $image_full_width > $desired_width || $image_full_height > $desired_height ) { 
							?>
										<div style="max-width: <?php echo esc_attr($desired_width) . 'px'; ?>">
											<div class="single-img-height" style="height: 0; padding-bottom: <?php echo onioneye_get_loader_height($desired_width, $desired_height); ?>">
											
												<div class="single-img-container">
													
													<img class="single-img single-img-ajax" src="<?php echo esc_url($image[url]); ?>" width="<?php echo esc_attr($desired_width); ?>" 
														height="<?php echo esc_attr($desired_height); ?>" alt="<?php echo esc_attr($alt_attr); ?>" />
														
													<?php if($img_caption) { ?>
											  			<p class="oy-flex-caption"><?php echo $img_caption; ?></p>
											  		<?php } ?>
												</div>
												
												<div class="single-img-loader"></div>
											
											</div>
										</div>
												              
							<?php 
									} else { 
							?>		    
										<div style="max-width: <?php echo esc_attr($image_full_width) . 'px'; ?>">
											<div class="single-img-height" style="height: 0; padding-bottom: <?php echo onioneye_get_loader_height($image_full_width, $image_full_height); ?>">
											
												<div class="single-img-container">
													
													<img class="single-img single-img-ajax" src="<?php echo esc_url($portfolio_img_url); ?>" width="<?php echo esc_attr($image_full_width); ?>" 
														height="<?php echo esc_attr($image_full_height); ?>" alt="<?php echo esc_attr($alt_attr); ?>" />
														
													<?php if($img_caption) { ?>
											  			<p class="oy-flex-caption"><?php echo $img_caption; ?></p>
											  		<?php } ?>
												</div>
												
												<div class="single-img-loader"></div>
											
											</div>
										</div>
							<?php 
									} 
								}
								else if(!empty($image_list) && count($image_list) >= 1) {	
							?>
									
									<div class="oy-flex-container">
									
										<div class="oy-flexslider">
											
											<ul class="oy-slides">
											   				
												<?php foreach ($image_list as $portfolio_img_id => $portfolio_img_url) { 
																							  
													$img_meta = wp_get_attachment_image_src($portfolio_img_id, 'full-size');
													$image_full_width = $img_meta[1];
													$image_full_height = $img_meta[2];
													$alt_attr = get_post_meta($portfolio_img_id, '_wp_attachment_image_alt', true);
													$img_caption = get_post($portfolio_img_id)->post_excerpt; 
													
													/* find the "desired height" of the current thumbnail, relative to the desired width */
													if($image_full_width && $image_full_height) { 
														$desired_height = floor($image_full_height * ($desired_width / $image_full_width));
													}
													
													$thumb = onioneye_get_attachment_id_from_src($portfolio_img_url);
													$image = onioneye_vt_resize( $thumb, '', $desired_width, $desired_height, true );
											    
												    // If the original width of the thumbnail doesn't match the width of the slider, resize it; otherwise, display it in original size
													if( $image_full_width > $desired_width || $image_full_height > $desired_height ) { 
												
												?>
														<li>
															<img class="oy-slider-img" src="<?php echo esc_url($image[url]); ?>" width="<?php echo esc_attr($desired_width); ?>" 
																height="<?php echo esc_attr($desired_height); ?>" alt="<?php echo esc_attr($alt_attr); ?>" />
															
															<?php if($img_caption) { ?>
													  			<p class="oy-flex-caption"><?php echo $img_caption; ?></p>
													  		<?php } ?>					
														</li>
														              
												<?php 
													} else { 
												?>
													
														<li>
															<img class="oy-slider-img" src="<?php echo esc_url($portfolio_img_url); ?>" width="<?php echo esc_attr($image_full_width); ?>" 
																height="<?php echo esc_attr($image_full_height); ?>"  alt="<?php echo esc_attr($alt_attr); ?>" />
															
															<?php if($img_caption) { ?>
													  			<p class="oy-flex-caption"><?php echo $img_caption; ?></p>
													  		<?php } ?>		
														</li>
							   
												<?php 
													} // end else
												} // end foreach
												?>												   							        							    
											    
											</ul><!-- /.oy-slides -->
											
											<div class="oy-flex-img-loader"></div>
										    
										</div><!-- /.oy-flexslider -->
									
									</div><!-- /.oy-flex-container -->
						
							<?php } // end else if ?>
							
						</div><!-- END .metabox-media-files -->
					<?php } ?>
						
					<?php if($video_embed_code) { ?>
						
						<div class="video-embed">
							<?php echo stripslashes(htmlspecialchars_decode($video_embed_code)); ?>			
						</div>
								
					<?php }	?>
						
					<?php if($content) { ?>
					
						<div class="item-description">  			
							<?php echo $content; ?>
						</div>
					
					<?php } ?>
					
				</section><!-- /.item-content -->
				
				<aside class="item-sidebar group">
					
					<ul class="post-nav group">
						
						<li><span class="close-post">&nbsp;</span></li>
					
					<?php if($prev_id && $next_id) { ?>			
					
						<li><a class="next-portfolio-post" rel="next" href="#" data-post_id="<?php echo esc_attr($next_id); ?>">&nbsp;</a></li>
						<li><a class="prev-portfolio-post" rel="prev" href="#" data-post_id="<?php echo esc_attr($prev_id); ?>">&nbsp;</a></li>
						
					<?php } else if ($prev_id) { ?>
					
						<li><a class="prev-portfolio-post" href="#" data-post_id="<?php echo esc_attr($prev_id); ?>">&nbsp;</a></li>
			
					<?php } else if ($next_id) { ?>
			
						<li><a class="next-portfolio-post" href="#" data-post_id="<?php echo esc_attr($next_id); ?>">&nbsp;</a></li>
				
					<?php } ?>
						
					</ul><!-- /.post-nav -->
					
					<h1 class="item-title"><?php echo get_the_title($current_post_id); ?></h1>
					
					<div class="project-meta group <?php echo esc_attr('oy-' . $no_of_columns . '-cols'); ?>">	
						<?php if($terms) { ?>					
							
							<ul class="item-categories item-metadata group">
						    	<li><?php esc_html_e( 'Categories', 'onioneye' ); ?><span> &rarr;</span></li>
								
								<?php 
									$i = 0;
			
									foreach($terms as $term) {
				
										if($i + 1 == $num_of_terms) {
				    						echo '<li class="item-term">' . esc_html($term -> name) . '</li>';
				 						}
										else {
											echo '<li class="item-term">' . esc_html($term -> name) . '<span class="cat-comma">, </span></li>';
										}
											
										$i++;
									}
								?>
							</ul>
								
						<?php } ?>
						
						<?php if($is_pub_date_displayed) { ?>
							
							<ul class="item-date item-metadata">
							    <li><?php esc_html_e('Date', 'onioneye'); ?><span> &rarr;</span></li>
							    <li><?php echo mysql2date( __( 'F Y', 'onioneye' ), $post->post_date ); ?></li>
							</ul>
						
						<?php } ?>
						
						<?php if( $client ) { ?>
							
							<ul class="item-client item-metadata">
							    <li><?php esc_html_e('Client', 'onioneye'); ?><span> &rarr;</span></li>
							    <li><?php echo esc_html($client); ?></li>
							</ul>
							
						<?php } ?>
						
						<?php if( $project_url ) { ?>
							
							<ul class="item-url item-metadata">
							    <li><?php esc_html_e( 'Project URL', 'onioneye' ); ?><span> &rarr;</span></li>
							    <li><a href="<?php echo esc_url($project_url); ?>"><?php esc_html_e( 'Visit site', 'onioneye' ); ?></a></li>
							</ul>
							
						<?php } ?>
					</div><!-- /.project-meta -->
								
				</aside><!-- /.item-sidebar -->	
				
				<div class="portfolio-border">&nbsp;</div>
				
			</div><!-- /.single-portfolio-item -->
		</div><!-- /.portfolio-item-wrapper -->
		
		<?php get_template_part('includes/portfolio'); ?>
        
    <?php endwhile; ?>
        				
<?php get_footer(); ?>
  • This topic was modified 8 years ago by mr108.
]]>
https://www.ads-software.com/support/topic/images-no-longer-appear-after-regenerating-image-sizes/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Images no longer appear after Regenerating Image sizes]]> https://www.ads-software.com/support/topic/images-no-longer-appear-after-regenerating-image-sizes/ Fri, 28 Oct 2016 08:04:22 +0000 trishahdee Replies: 2

Development Site: https://trishah.com/talking-style/
Problem: Home page top slider

Your plugin slider was working fine. However, because the client used odd sized images, it was causing a responsiveness problem on lower resolutions with some images being taller than others. I thought a quick solution would be to regenerate the images so they would all be the same size, 1024×680. Now no images show at all.

I’ve looked at the page code and the <img> URLs themselves do work.
I’ve tried other browsers and the same problem is in all of them.
I tried deleting your plugin and reinstalling. No change.

I’m at a loss on what to do to fix this.

]]>
https://www.ads-software.com/support/topic/slider-not-visible-2/ <![CDATA[Slider not visible]]> https://www.ads-software.com/support/topic/slider-not-visible-2/ Wed, 07 Sep 2016 21:06:51 +0000 Replies: 1

I installed the plugin and have been trying to have my featured images / featured posts show up. However I can only see the arrows/menu dots – sometime one of the images appears but is only visible for one second.
I have turned off all other plugins to see if there is some incompatibility but so far that has not helped either.
error

Also, when I deactivate the flexslider plugin there is a php error visible only for a short second:
error php

help is appreciated, thanks in advance.

  • This topic was modified 8 years, 2 months ago by twotwentysix.
]]>
https://www.ads-software.com/support/topic/post-counter-2/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Post counter]]> https://www.ads-software.com/support/topic/post-counter-2/ Wed, 03 Aug 2016 19:35:43 +0000 naved90 Replies: 5

Hello,

Great plugin I really love it.

My question is : is it possible to show post counter at the top of the plugin. The format of the post counter I am looking forward to is:

Current post number / Total Number of posts in slider

example : 1/20

Please let me know how I can achieve it. It would be really great of you.
Thanks in advance.

https://www.ads-software.com/plugins/recent-posts-flexslider/

]]>
https://www.ads-software.com/support/topic/problems-when-showing-more-than-3-slides/ <![CDATA[Problems when showing more than 3 slides]]> https://www.ads-software.com/support/topic/problems-when-showing-more-than-3-slides/ Tue, 02 Aug 2016 10:07:58 +0000 yudayuda Replies: 1

Hi, and thanks for a great plugin ??

I have an issue when showing more than 3 slides: the 4th one is always the same as the 3rd one, and the 5th, 6th etc are coming out empty.

There are currently no JS errors. Any thoughts?

Thanks a lot

Yuda

https://www.ads-software.com/plugins/recent-posts-flexslider/

]]>
https://www.ads-software.com/support/topic/how-to-movethe-caption-below-the-image/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>how to move the caption below the image]]> https://www.ads-software.com/support/topic/how-to-movethe-caption-below-the-image/ Thu, 21 Jul 2016 11:54:20 +0000 mr108 Replies: 13

Hello,

I’m using this slider integrated into a theme. I’m testing the theme and the slider on the Portfolio page:
https://yy3.atwebpages.com/portfolio/celebs/

How can I move the caption right below the image?

Thanks for any help

Marek

https://www.ads-software.com/plugins/recent-posts-flexslider/

]]>
https://www.ads-software.com/support/topic/image-not-appearing-6/ <![CDATA[image not appearing]]> https://www.ads-software.com/support/topic/image-not-appearing-6/ Sat, 16 Jul 2016 06:30:17 +0000 janvats Replies: 1

I ve added the recent posts flexi sldier plugin to my site. Suddenly images are not appearing. all my posts have featured images. but still they are not displayed. can anyone help pls?

https://www.ads-software.com/plugins/recent-posts-flexslider/

]]>
https://www.ads-software.com/support/topic/mobile-version-problem-8/ <![CDATA[mobile version problem]]> https://www.ads-software.com/support/topic/mobile-version-problem-8/ Sun, 21 Feb 2016 15:39:51 +0000 chingchingching Replies: 1

Hi,
there a big gap between the image and caption on mobile instead of overlapping the bottom of the image as it is on computer, is there a problem to solve this?

thank you!

https://www.ads-software.com/plugins/recent-posts-flexslider/

]]>
https://www.ads-software.com/support/topic/custom-categories-slider-7/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Custom Categories Slider]]> https://www.ads-software.com/support/topic/custom-categories-slider-7/ Sun, 14 Feb 2016 04:46:45 +0000 TatsujinUK Replies: 1

Is it possible to replicate the slider you see here (https:// www. pricesanond. com/) using this plugin?

It shows the latest post from each category of the site …

Thanks in advance.

https://www.ads-software.com/plugins/recent-posts-flexslider/

]]>
https://www.ads-software.com/support/topic/thumbnail-nav-and-general-fs-options/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Thumbnail nav and general FS options]]> https://www.ads-software.com/support/topic/thumbnail-nav-and-general-fs-options/ Tue, 05 Jan 2016 17:28:02 +0000 lectest1 Replies: 2

Perfect plug-in.

My general question is: Where in the code may I inject other flexslider options in the js function?

Specifically, I’d like to add ‘controlNav: “thumbnails” ‘ in the initial function.

Thank you!

https://www.ads-software.com/plugins/recent-posts-flexslider/

]]>
https://www.ads-software.com/support/topic/mobile-version-problem-7/ <![CDATA[Mobile version problem]]> https://www.ads-software.com/support/topic/mobile-version-problem-7/ Sun, 03 Jan 2016 03:10:12 +0000 chingchingching Replies: 0

Hi,
there a big gap between the image and caption on mobile instead of overlapping the bottom of the image as it is on computer, is there a problem to solve this?

thank you!

https://www.ads-software.com/plugins/recent-posts-flexslider/

]]>
https://www.ads-software.com/support/topic/display-is-pushed-down-with-large-gap-above/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Display is pushed down with large gap above]]> https://www.ads-software.com/support/topic/display-is-pushed-down-with-large-gap-above/ Thu, 01 Oct 2015 19:56:11 +0000 ClickMonster Replies: 2

Greetings, functionally the slider and posts are there but the items are pushed down to the bottom with a wide gap of white space above. Seems the .flexslider-caption styles are causing this, but changing them makes it all disappear.

See here

https://www.ads-software.com/plugins/recent-posts-flexslider/

]]>
https://www.ads-software.com/support/topic/most-recent-posts-in-selection-of-categories-1/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>most recent posts in selection of categories]]> https://www.ads-software.com/support/topic/most-recent-posts-in-selection-of-categories-1/ Wed, 30 Sep 2015 20:28:00 +0000 rebelbluedesign Replies: 1

I was wondering if your post slider will pull the most recent post in a selected group of categories.
Example, I have 5 categories selected. I want only the most recent from each category, so the post slider will only show 5 at a time.
Instead of, only pulling the most recent posts overall, so if I’m posting a lot in one category, the slider will be filled with just that one category.

https://www.ads-software.com/plugins/recent-posts-flexslider/

]]>
https://www.ads-software.com/support/topic/need-your-help-how-tu-use-the-plugin/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Need your help: How tu use the plugin?]]> https://www.ads-software.com/support/topic/need-your-help-how-tu-use-the-plugin/ Fri, 21 Aug 2015 11:57:16 +0000 bil4l Replies: 3

Hello, Guys, i do really need your help
i’ve just found this plugin and i’m trying to use it but i don’t see how tu procede.
“Place Recent Post Flexslider onto a sidebar on the Appearance->Widgets page”
How to fix this point?

__

I’m looking for a plugin that displays in a slider, giving the possibility to slide by categories ( and displaying for each item its description)

https://www.ads-software.com/plugins/recent-posts-flexslider/

]]>
https://www.ads-software.com/support/topic/title-44/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>Title]]> https://www.ads-software.com/support/topic/title-44/ Sun, 31 May 2015 15:12:45 +0000 jordanbeckwagner Replies: 2

Hello! For some reason all of the sudden, the slider stopped showing my title (although it still shows the title if you hover over it). I’ve tried everything and I can’t seem to figure out the problem. I’ve uninstalled it multiple times now. Any suggestions? My site is https://www.beertimewithwagner.com Thanks so much!

https://www.ads-software.com/plugins/recent-posts-flexslider/

]]>
https://www.ads-software.com/support/topic/two-wishes-pre-text-and-a-read-more-link/ <![CDATA[<span id="jp7prfn" class="resolved" aria-label="Resolved" title="Topic is resolved."></span>two wishes: pre-text and a 'read more' link]]> https://www.ads-software.com/support/topic/two-wishes-pre-text-and-a-read-more-link/ Mon, 20 Apr 2015 01:18:31 +0000 Ramzii Replies: 3

Congrats on this highly customizable widget. Using a custom sidebar tutorial ive made it into my main slideshow on the homepage.

Now i wish to add these two features, could u elaborate how to achieve this?

I would like:

1. To always have the word “News: ” in front of the title in the sidebar. This will appear somewhat smaller than the post title itself.

2. I would like a ‘read more >’ button to show on each slide.

Please help me out, thank you.

https://www.ads-software.com/plugins/recent-posts-flexslider/

]]>
Malaking puwang ng bass splash review Bakit pinapayagan ng pamahalaan ang operasyon ng mga monopolyo How to play Super Ace jili Nice88 club withdrawal Esball online casino com registration Nuebe Gaming legit HB888 Casino real money Casino bonus no deposit free spins 2021 12 Titans Greek mythology online slot machines for real money free play Mines jili login download Allin88 ph login Casino Guru gratis Vegas World login Apanalo online game no deposit bonus 77ph Himala himala wikipedia 啶掂啷嵿ぐ啶ぞ啶?啶曕啶ぞ 啶灌? 啶す 啶囙い啶ㄠぞ 啶栢い啶班え啶距 啶曕啶啶?啶灌啶むぞ 啶灌? Mnl168 online casino register philippines login Bally slot machine value Jili live casino no deposit bonus Gcash gambling reddit philippines tamabetcasino Jili magic lamp app Mwplay888 net download for android Vegas Live Slots hack APK Clive and jill sidequest ffxvi Jiliasia online casino Online bingo jili withdrawal Chili for a crowd Silver Palate Jili168 register philippines Jili mk casino Jili cc download for android Habanero online casino games philippines Philucky withdrawal format 377 jili login register philippines Jili slots download Bsa387 login password Ginto Casino link 49jili login to my account login philippines app Royal777 casino no deposit bonus 8 juli feiertag wikipedia Ano ang mga flash game sa hollywoodbets app download Game of Thrones Slots referral code Igt address manila Zynga slots free coins cheat android Jilicash real money withdrawal Paano gumagana ang mga online slot machine login Ezwin online casino philippines Peso88 login register Jili kaganapan login register Winning plus 8 login philippines masuwerteng iikot ang mga nakakalokang slot 123jili app Login casino games online unblocked Transaction password USDT Baccarat games online real money Appointment slots vs appointment schedule quick hit slots commercial actor Multiclass spell slots table Slot schedule template 啶灌啶曕啶?啶曕ぞ 啶い啷嵿い啶?啶曕た啶むえ啶?啶灌啶むぞ 啶灌 Jili jackpot 777 download for android latest version Million 888 casino login register Tongits go apk unlimited money latest version Pinakamahusay na jili slot game download YE7 Download App BET99 Quebec Free 100 online casino registration facebook page 2021 slots no deposit bonus Online gambling philippines real money Jilibet casino login philippines Super Royal 777 Slots go casino login Register Youtube ng slots today Peso 888 apk Mini777 register download PG gaming casino login Wizard of Oz free coins gamehunters Philippine News today live 247Spin free 100 spin the wizard of oz slots free coins E2 jili casino login Konjac jelly Japan Big bet review korean Online casino Philippines News 7 Juli 2024 memperingati Hari Apa Jili 747 casino login Winph 777 login philippines app benefits of online casino games Wild aces online casino real money Mwcash88 Bonus hunter cc email Maduna clan names FF16 change party members Online casino games real money free spins no deposit Dbx casino real money philippines Okada online casino apk latest version Skype Download for PC Jilibet donnalyn login Register online casino 777 Pub download old version Spaghetti Jollibee price Jili no 1 login register Jiliasia app apk Super slots apk old version 646 casino login Register Philippines Listahan ng laro ng skillz login Totoong online pokies philippines release the kraken clash of the titans (1981) Casinos online real money philippines Phil168 APK Download Chumba Casino login Www 49 jili casino login password Fb jili casino login download apk Jlbet slot login Jili 777 lucky slot login register philippines apk Pagcor logo meaning Hard Rock online casino login 77ph com login password download Ano ang gamot sa mataas ang sugar Online casino download APK Geely Emgrand price Philippines BLBET Tapwin 2024 download apk Lodi 646 casino login ph Royal558 download Abc jili register philippines download LVJILI login Royal fishing jili download for android Free60 casino philippines Kk jili libre 58 real money download PHFUN login Nice88 download free ios Best penny slot machines to play at the casino for beginners portal.pagcor.ph sitemap online casino games no deposit bonus Unlapi AAA Jili login Bongobongo ug Casino Jili x yb download apk do 888 casino register Cash Rush slots 777 apk latest version Free online casino games win real money no deposit Philippines Fortune 888 login password Slots casino login no deposit bonus 49 jili time philippines download Nuebe register login Jili fishing game download free Win99 casino philippines Bingo Super Star download 55bmw win withdrawal Jili kilig login download Superball Keno online Hacksaw slots real money Pagcor address philippines 188 jili demo account hack Vegas online casino games free play Jili 49 net casino login philippines 777 jili jackpot apk latest version Fc slot demo free download Jili under maintenance today download android 3 patti slots patti online play Jili bingo download for android Smbet register philippines Osm jili register mobile number philippines MWGAMING 188 register Nuebe agent login philippines Online casino color games philippines Is Winford Casino open today Jili update today WK777 slot Jili casino review philippines slotomania online Lucky jili slots login register mobile 188 jili casino login download philippines Baccarat game strategy reddit Jili22 promotion How to withdraw in jili slot online 1xslots login Mnl168 online casino register philippines login Paano maglaro ng slot gambling login casino for real money online Best online casino Philippines reddit Jili deposit 50 withdrawal limit Nextbet philippines registration 168jili login registration Www royal888casino net register Double Win Withdrawal App Fisheries department officials 777 Lucky JILI Slots Casino APK download Nz online casino games real money 888php withdrawal Jili mines predictor apk Online casino jackpot slots free play yy777cam Jili one login download mainstream records lee young-ji 77ph com download free 49 jili years login register Jili slot club jackpot 777 download free money philippines Www betvisa games app 1888 jili casino withdrawal online July 10 religious holiday Labet88 login registration 2021 Osm jili casino online games philippines download Money 888 login download Empire slot machine download Ireland online casino games free play Kk jili casino login registration download apk 1000 free games to play with friends Poseidon god son Jili lucky slot app download Big baller club casino login registration philippines Fish Hunter - Shooting Fish Pnp 888 jili slot game login app Limbo game download for PC Highly Compressed Jili jackpot 777 download apk ios slot machine free games free spins deposit bonus Jackpot meter app for android Instant withdrawal betting app Dama N.V. casinos no deposit Bonus Joy 7 casino login free chips Eliakim Sadoki Hadaa Ya Walimwengu Gemdisco login 08 jili register app Jollibee slot casino login philippines register online Award winning chili recipe Allrecipes Helens Slot APK old version Mga kahinaan ng mga pragmatic slot machine login Jili pulang sobre register online Jili777 free 150 no deposit bonus Philippines Jili no 1 com withdrawal philippines Slot online game free real money Jackpot joker jili demo free download Best pg slot game free no download Wagi77 login Philippines Rich9 pinakamainit na laro login Fortune gaming88 login philippines Royal Slot Login Fun facts about July 19th Geely gx3 fiche technique philippines IND slots APK yono Ox jili slot withdrawal What happened on October 7 Al Jazeera 777 pub com login download Nice88 app 99 Fortune Casino login Register Tmtplay888 Jiliplay login download Love jili vip login password 888bet registration online Dragon vs Tiger hack apk Lucky JILI slots login register Kpl casino Online casino game for real money free play 777pub open now promo Video poker jacks or better strategy chart Jili 365 casino login register philippines no deposit bonus download Free slots com party bonus Animal Husbandry Minister Bihar list 188 JILI casino login registration Philippines Anuani ya katibu tawala mkoa wa dar es salaam NetBet registration Fg777 register philippines 90 jili live login download One slot game download Agent GEMDISCO Jili 999 com withdrawal Jilimk casino log in no deposit bonus tg777 login register philippines Pagcor login philippines List of licensed POGO in Philippines 2023 How many cannabinoid receptors are there in the human body Q25 jili download ios Ff777 vip login Jili 49 dot com registration philippines Ano ang speed roulette review Ph joy vip login registration philippines 4 ram slots which ones to use Mga puwang ng video youtube Jackpot Party Instagram free coins www.free facebook.com log in Betvisa download for android 49jili pogcor Betso888 login download Jollibee slot login Fruit Theme Birthday Party Wjslot claim form Nextbet Live Casino Lotto go Jili volatility calculator philippines Teenage Kraken Salish Matter Lucky 777 online casino login philippines Slotomania 777 casino real money Mega ace jili demo apk latest version Falcon Play customer service www.666.com games Bingo Jili PH Slots earning app real money no deposit Canara Bank Internet banking PIN generation 8K8 vip login Philippines No 1 jili app for android free download Gonzo's Quest max win 9 Pots of Gold land and win What does Mr Mike Slots do for a living Jili fc slot real money no deposit bonus Ph macao jili register download limbo apk + obb download Swcup6 net live login Register philippines Free slots 8888 no deposit philippines Jili tadhana slots download free Free casino slots 3 lines no download Jili okbet real money philippines Jili88 ph com register login password Slots earning app real money download Jili apps download free for android ios Kurdish traditional dress Labet88 online casino Ez jili telegram ios 94067 water heater door installation Real Boxing 3 download Best casino online Wishbone Games Nextbet login mobile registration Jili no 2 login no deposit bonus Poder Judicial Superace88 club login registration link Triple match 3d master mod apk Sino ang cowboy slots wife Jili 5678 casino login poker star Apanalo casino app login KK JILI casino login app apk Www gibson casino www gibsoncasino com login APEX slot download Best free slot machines play for free no deposit Mining Telegram group link Jili t7 real money Jili369 app download Progressive jackpot meter link Lampara ng genie philippines Best free slots with bonus Asia JILI casino register 888 ladies slots login UNO Spin Millionaire Dimm slots reddit King game app download apk Yy777 index login No deposit slots real money Yeriko by injili bora choir session 49 jili road register philippines Jili slot 777 login register online no deposit bonus philippines 啶啶?啶曕 啶啶班が啶?啶曕ぐ啶ㄠ 啶曕 啶夃お啶距く GGBet welcome bonus Is the 49ers coach a Christian Sino ang may akda ng medusa Ace Super ph casino Login games.747 games.ph/launchgame open now Tiktok video Zili 7 Gold Fruits slot Peraplay APK download Labet88 register philippines app Love jili vip login philippines Slots download free Jili slot jackpot login register Junglee Rummy APK Paddy power virtue Welke dag is het vandaag in belgie Nn777 login philippines app Pb777 login id and password free Sweet Bonanza free spins no deposit Online slots casino 888 real money no deposit online casino games real money Osm jili casino Megaways slots login Konami free slots no download Big Bass Hold and Spinner Megaways demo Jili 888 register Jili mines download free Best free video poker no download fishing slot casino - free 100 000 coins Jili22 NEW com register Big Bass Bonanza Geely subsidiaries in philippines State fish of bihar in english Game of Thrones Slots Casino free coins hack Lucky jili casino login registration philippines apk Mga laro ng slot na nagbabayad ng totoong pera apk Niceph casino real money Fortune Dragon PG slot demo Reference generator Jili88ph net register download FG7777 Jili super win apk best online casino games to win money Bagong jili register app 777sm vip login Jl bet slot register Jili casino sign up bonus no deposit philippines Phlove Casino Login Register Jili slot online real money Ez jili code free download Cannabinoids structure How does Dragon Link slot work 188 jili casino download free Which casino has the most winners in Vegas Goldfish slots apk Fisheries, Bihar gov in Medusa megaways real money Mwcash88 casino login Best time to play crazy time reddit Voslot jili register philippines Ang tao ba ay nagmula sa unggoy PHL63 login register Demo Jili Golden Empire Download app and get bonus Pogibet free 100 philippines 22FUN APK Lucky JILI Casino login registration Win win Game zambia online app download Win100 com casino group win100 originals win100 originals register Mlbb Win Rate Calculator APK Mi777 casino login philippines register Do888 casino login no deposit bonus Jill Scott net worth 8 jili slot download for android 55X Casino Login Register Philippines Ug777 app download apk for android 94067 water heater door replacement Loveph casino Tianjin University of Science and Technology How to play Fortune Gems online Earn money online Philippines legit Xo jili com register philippines Cruise casino in Goa Play slot machines for free online no deposit Is golden Cowboy good tds online casino games volatility Tmtplay casino login register mobile 啶戉え啶侧ぞ啶囙え 啶曕啶膏啶ㄠ 啶椸啶?啶曕啶膏 啶栢啶侧啶? EZJILI Login Register Game room online casino games real money Casino dealer Reddit ph Slots jackpot meter philippines app Pldt 777 real money withdrawal Jackpot World redeem code free 2024 Jilibay free 68 no deposit bonus Bet88 ph app download for android OKBet rewards app Julie emergency contraception reviews 啶ぞ啶椸啶?啶う啶侧え啷?啶曕ぞ 啶膏す啶?啶夃お啶距く Mega win login Best online casino games real money app Jiliasia ace download Jili 178 real money app Pag-IBIG membership Double DaVinci Diamonds free slot game jili 711 Slot virtual real money free Jili tongits withdrawal limit Okbet casino login philippines download Sabong derby 2023 Full Video MONOPOLY Slots download White part of eye swollen like jelly home remedies Ez jili codes 2021 Wjslot com rewards login How many evolutions can you have in a deck Clash Royale Online casino jili login register House of Fun VIP PLUS download SM Megamall 3 day sale 2024 dates Phil163 login Simple chili recipe Jili slot machine apk latest version Jili188 login download Boss88 Slot Login Jili go login philippines Online casino games with free signup bonus philippines Jili mines download apk Fc slot online philippines Y777 jili real money withdrawal Win99 online casino login register Lucky jili slots login register mobile philippines BetVictor UK Jilino1 new site Jili no minimum deposit philippines 2020 Royal777 login register philippines Forgot transaction password in phdream Casino plus jili slot real money Win99 slot games free apk Nn777 slot jili real money 38jili login GO Keyboard APK betBonanza mobile login registration Dragon cash vs Dragon Link 8k8 online casino games downloadable content philippines Best slots to play on FanDuel reddit balato8aa Crown89ph casino login Online casino builder Wjevo22 app irich slots&games casino 777 Boxing king casino real money Jili22 vip202 download online casino games with no minimum deposit Mega Wheel game download Jili apps download for android free Diablo 4 enchantment slot not working Online lucky sweepstakes no deposit bonus 747 online casino games philippines Super ace demo game online free Spin and win cash in Uganda withdrawal PG Soft Wild Bounty Showdown 777sky slot Jiliapp download latest version Www royal888casino net register Royal slots real money login ????? ?? ???? ??? ???? ????? ????? Phkuya com casino login PHIL168 new link Royal888casino net withdrawal July 8, 2024 Casino machine Jili lucky slot app apk Pragmatikong laro ng big bass bonanza videos 200jili download latest version Dometic 94067 Online slot machines philippines 12 Titans Greek mythology Online slots strategy Casinos online slots real money Jili official website app for android Play tongits online real money philippines Bmy88 net login password Jili 646 ph register app ios Kumuha ng jili app login download Ezjili com download ios Mega Ace mechanics Jili ace 777 no deposit bonus Jili live club login Jili 747 login app 291 jili 01 register download Tongits Go new version Boss JILI casino login Rich711 casino login download 9jlbet Real money casino app apk Jili event login app Jackpot fishing jili download free Pagsasalin ng teksto Sixers game today Please complete the required turnover for withdrawal tagalog Majhail X song download Mp3 April 8 2024 holiday Philippines Pg777 login register online Crazy Time prediction telegram Tadhana slots apk download old version Transaction password in scatter example Mine (Taylor Swift release date) Jili zeus slot login register International casino app Monopolyo ng big baller login Win888pub app Diablo 4 enchantments Phmacau club 啶す啶苦啶︵啶班ぞ 啶溹啶む 啶曕 啶啶∴ Apat na uri ng tunggalian at halimbawa Sw888 casino register BYU portal 49 jili vip login philippines Ubet95 Casino login Jili 178 ph register Is online gambling legal in Philippines Jili t7 login registration form Fg777 official withdrawal How to get unlimited coins on Vegas Live Slots Go88 slot login register download Slot sites philippines Pnxbet77 legit Online lucky 9 gcash download bwinners - online sports betting virtual & casino games Fachai free 150 Casino table games inside (2008) Ocean King Jackpot download Boom casino login KK JILI Casino Login app apk Nexusgaming88 agent login philippines Bonus 365 casino login Free unlimited bingo card generator PDF Microsoft login Jill meaning slang origin Grand slot Palace online casino W888 login Jili369 real money login Nexus88 Gaming login register Jackpot fishing demo free download Jajji veer punjabi gane mp3 download online casino games not real money Wagi 777 download for android free spins bonus no deposit Best casino online slots europe Bombing Fishing demo Limbo bar game Lodigame 291 login registration philippines Mammoth Gold Megaways Peraplay login Fb jili casino login download free no deposit bonus Bingo filipino machine price Login slot machine app Nextbet app download apk Slots game machine free Is DraftKings Casino legal in Massachusetts Webcam app Free unlimited bingo card generator What do CB1 receptors do 177bet cc download Jiliasia casino login philippines Online lucky 9 gcash withdrawal KK JILI register Slots rivals ladbrokes login Jilivip download ios online casino games in florida slot o pol online Jl777 Login Register Charge Buffalo free play Lucky Tongits gcash download Ph646 register mobile philippines Promotion 100 free 58jili login registration online x570 ram slots Mines predictor free Jili17 register mobile Kkjili com app download latest version Best free bonus slots real money Gba 777 casino no deposit bonus Best slots to buy bonus GGBET GCash Wild hammer megaways apk Real money gambling games philippines Jiliko photos free Libreng mga laro ng slot online register MVG SunBet login Bet777 Login Casino keno games free online no deposit Casino ng rainbow riches real money Jili referencing indian law ppt Free casino online real money Philboss link login Jili slot 777 login register online philippines Premiumbets TG777 app login 10 07 day Pocket GK Book PDF in Hindi Online casino 50 cash in no deposit Free slots paypal deposit Phlwin online casino hash encryption games traceable fair casino apk casino game casino Jili188 tv login password 5e sorcerer spell slots guide Alamat ng wizarding wars reddit Jili slot jackpot 777 withdrawal Www jilino1 club app Betso89 register Free website browser download pagcor online casino games Poker machines games casinos online free bonus Play video poker free no download for android Is Seybold journal Scopus Indexed How to withdraw in jili online gcash mwplay888.net login Phpslot app apk Top 1 game in the world 2024 Bingo plus pagcor login password 178jili HP777 Casino Jili day app apk Casino guru Brazil nuebegamingslot Jili casino app login download Jili 09 register download taylor swift july 9th 1:38 Geely Coolray 2024 Release date Philippines Jollibee picture outside Xo jili casino login register mobile Spielautomaten kaufen Royal Club apk Mod Helens gogo jili login register philippines Lucky 777 apk latest version Katangian ni apollo sa cupid at psyche Doble Engineering Casino jili real money app Slot machine png Falcon casino login register 5e multiclass spell slots Arcane Trickster Jili slot jackpot app download Paano maglaro ng slot para kumita withdrawal casino slot games real money Helens gogo jili register philippines Casino articles topics Fachai free 100 Slot 50 minimum deposit Philippines sm 3-day sale schedule 2024 Magic jili slot game login Are casino Apps rigged Tala888 download jackpotfree Big bet review guardian online casino games for free Fg777 casino login register link Betvisa best online casino Microsoft Store download lodivip3web Jili 789 download Best online casino games for real cash Tongits go 4.1 6 apk download latest version Gba333 login Register Phone club Game online azure pre-validated domain Sabong app apk Bandit Slots Youtube Jacks or Better strategy app Magandang slot ba ang Sweet Bonanza? 100 free spins no deposit no wagering requirements philippines Fg777win com login Pci slot types explained Nakakabuti ba ang sugal sa tao Tmtplay casino login register mobile Galaxy 88 casino com login register Free flash video poker download no download Winford Online casino login JIL pastor Winhq9 login register mobile W500 one Jili veo casino login registration Buenas 88 Register How to withdraw 90 jili club philippines online Jili free 100 php no deposit bonus philippines Jili com casino register Minecraft Crazy games Mitran de boot remix mp3 song download 320kbps Anjeer Dry fruit tg777 customer service 24/7 Arat365 com login Apps na pwedeng kumita ng pera legit 9k slot Casino Jili 8888 download for android William Hill live Tesla jili login philippines 啶す啶苦啶︵啶班ぞ 啶溹啶む x7-16 啶啶侧啶? Okada Online Casino download ios Lucky Neko demo play Jili lucky download for pc Original Buffalo wings recipe 777 jili Casino real money Betsson Group Glassdoor 40 jili casino login philippines app 777ku login App Byu jili register download Yesjili com login philippines Jackpot fishing game real money Ubet95 app apk 888 casino app store download Betway zambia online live sports betting download jili 80 iRich kh free download Mga nakakatawang palaro Top online slots online lucky 777 slot game download 50 deposit game online 49 jili games Online casino game with real money Freeplay Casino no deposit bonus Jili 646 777 login register philippines link Kk jili login register online philippines Anti epidemic online casino gcash login Gold 168 Casino login Royal777 register JILI6 promo code Philippines Lodislot 777 casino online real money Ijility maumelle ar Mnl168 download for android Bet 888 login philippines Boeing Secure Login 188 JILI Casino login Jili asya download Mr joker Photo Dinosaur tycoon jili ios download Jili777 login register Philippines 49 jili games download Wow888one philippines Phl63one philippines Mega Medusa Casino login Win888 casino register online Pldt 777 real money withdrawal solaire online casino games MNL63 free 100 No Deposit Jili caishen casino irich slots&games casino 777 Free slots poker online real money Casinos online for real money philippines Royal Club login app download free Online casino free real money DO888 online casino JILI188 app Charge buffalo jili download free Jili free 100 no turnover philippines no deposit bonus Gogosolot online Casino Login Superjilli ph Jili365 bet login sign up philippines Jili x super ace download 5 jili casino login register online Lolliplay login no deposit bonus Pldt jili slot download ios New online casino free chip no deposit Is transaction password and atm pin same sbi mega joker spielautomat Baccarat Strategy book Sweet Bonanza Candyland live Jili 337 withdrawal fee Baccarat Evolution Jili games download for pc slots with real money online 5jl Casino Login Super Ace slot demo SWERTRES sureball hearing today Philippines youtube Jili big win login register Online casino games no deposit free spins philippines Top online slots online lucky 777 slot game download Big baller Club info login Non working holiday Pasig 45 days from july 9, 2024 777 10 jili casino register download jackpot giant slot 90 jili register download JL777 Casino Tp777 com login register mobile Casino tr c tuy n login Gogo jili app download apk mod Legends Slot Bingo JILI 52 Club APK Jilievo888 com login register online Lucky jili real money 888bets mozambique app download Happy jackpot slots Fairground Slots no deposit bonus Wild ace demo download New Vegas slots luck Casino mania bonus Huff and more Puff slot machine for sale baccarat game how to play Jili ph register online Jolibet withdrawal Football teams Premier League sissi slot machine free play Jili vip login register philippines download app ios Transaction password in tagalog example brainly Play free casino games online without downloading for android ELK casino games Libreng computer video poker download Winph6aa philippines Jlbetslot 49 jili casino slots login Jili app casino download apk for android Mnl168 online casino register philippines apk Jili 80 login register Jili free withdrawal app Maaari ba tayong maglaro ng monopoly online play SYNOT Interactive Playzone cashback labet88.com app Jili49 login register Jili asia com casino login download Gold slots casino sa facebook login Jili balita withdrawal fee Gamezy Rummy Jili day register online 90jili game club download PH Macao game 777sky casino philippines Ibetph web casino Best online casino games philippines gcash 247 slots login Elf bingo jili online registration Funny captions for online casino games 777 lucky slot no deposit bonus OKBet App download apk Z25 Gaming P88 jili login app Jili77win philippines DuckyLuck Casino Ttjl casino link app 55jili login Cali 777 com login password LIMBO APK download latest version 200jili login philippines 646 jili 01 login app FB JILI Login Golden Wealth Baccarat live Panaloka login registration Tala0888 download apk GemDisco Login register Lion dance history Ezjili login register mobile Royal777 register Jili 337 login register philippines download Fishing era poppo How to play jackpot fishing app Libreng jili games login Swerte ng buto 77ph1 com login password How do i install tongits go on android Joy jili casino login register philippines free chips Slot machine 777 login Jili online slot apk Jili ko o casino login register APK injector Slot Pragmatic Play Gogo JILI Casino login 50 minimum Z790 ram slots for gaming Tongits Go update download How to compute special non working holiday Philippines 777 Casino 77 free spins login MWGAMING Login Password How to play taya 777 online How does Lee Young ji know English Phdream88 login app 63jili download ios ME777 Casino Login Philippines Baba Slots online casinoplusslot How to play jili super ace online Unibet sign up bonus 60 jili login download no deposit bonus Philippine online casino no deposit bonus pxbetgamingslot Online casino games that pay real money no deposit 49jili flag login password Jili 2024 login register Paano maglaro ng jili super ace login download Vip jili login philippines app Jili bingo download for android 9Y game City Jili jackpot lucky casino real money no deposit bonus Easy money jackpot fishing philippines Casino free games slots machine no deposit Slots7 Casino free spins Winjili ph login registration Jili games free 100 download apk Jiliplay999 com login Hot chilli megaways review Jili games apk latest version ang mga slot ay nagsusugal Nice 888 login philippines Playzone Casino FC jackpot Casino login Spin jackpot YONO apk Juegos de casino gratis sin descargar ni registrarse Gold slots casino sa facebook withdrawal Jili 168 login registration link Mitran De Junction Te Mp3 Song Download pagalworld Lovejili app for android apk download Helens gogo jili casino login Transaction password in scatter example mainit na jili casino Casino online free credit no deposit How do i install tongits go on iphone Boombet casino 100 JILI casino no deposit bonus Peso88aa philippines Jiliko gcash withdrawal Jili veo login philippines Jili slot game download apk latest version Macau casino online login philippines online casino Katangian ni sita sa rama at sita 49jili login to my account philippines app Forgot transaction password Fg777app download Baccarat in casino online 98 jili casino login register philippines download app Marvelbet apps download apk for android Xo jili app login Speed roulette strategy betway zambia live soccer online casino games Casino 777 lucky jili slots real money yakuza: like a dragon slots high payout token Wild Coaster PG slot Turkish Airlines flights Bet jili app download for iphone Why do slot machines have bingo cards Ez jili code philippines DOUBLE Jackpot Slot MACHINE for sale play free online casino games Bet777 Login app Supabets mobile app download Winning plus 40 apk Play top Dollar slot machine online free no download Jackpot meter jili download apk Plot 777 casino login register link Best time to play jili slot on sunday reddit