Featured Content Gallery | WordPress Plugin | iePlexus

Featured main img prob but thumb is comming

New releases, ideas for the future, and known issues

Featured main img prob but thumb is comming

PostBy webmehul on Fri Sep 04, 2009 6:21 am

On my site i have installed latest FCG rest everything is working but main big img is not opening it always showes the loading bar

Have also checked the conflict list but i haven't installed any that kind of plugins which is can cause conflict with FCG

http://www.macktruck.org
webmehul
 
Posts: 7
Joined: Fri Sep 04, 2009 6:17 am

Re: Featured main img prob but thumb is comming

Thank you for using the Featured Content Gallery Forum
 

Re: Featured main img prob but thumb is comming

PostBy webmehul on Fri Sep 04, 2009 6:48 am

Now I have deactivated all the plugins and than tested still it's continue to show loading but doen't load the img. After this I tried default theme with no plugins only single plugin activate that is FCG and still the same thing can you please help me on this :(
webmehul
 
Posts: 7
Joined: Fri Sep 04, 2009 6:17 am

Re: Featured main img prob but thumb is comming

PostBy webmehul on Fri Sep 04, 2009 7:23 am

Here is my FCG Settings

Image



Here is my home.php file code

Code: Select all
<?php get_header(); ?>

<div id="content">

   <div id="homepage">
   
       <?php /*Check for the 'gallery_styles' function. if it's there, then include it. If not, do nothing*/ ?>
      <?php //if (function_exists('gallery_styles')) : ?>
      
        <div id="homepagetop">
         
            <div class="featuredtop">
           
            <?php include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php'); ?>
         </div>
           
      </div>
       
      <?php //endif; ?>
               
      <div id="homepageleft">
      
         <!--This section is currently pulling category ID #1, and can be switched by changing the cat=1 to show whatever category ID you would like in this area.-->
            
         <div class="hpfeatured">
         <h3>Featured Category #1</h3>
         
            <!--This is where the thumbnails are found for the homepage bottom section - note the custom field name for this image is "thumbnail". Recommended image size is 70x70, as the stylesheet is written for this size.-->
         
            <?php $recent = new WP_Query("cat=1&showposts=3"); while($recent->have_posts()) : $recent->the_post();?>
            <?php if( get_post_meta($post->ID, "thumbnail", true) ): ?>
                <a href="<?php the_permalink() ?>" rel="bookmark"><img style="float:left;margin:0px 10px 0px 0px;" src="<?php echo get_post_meta($post->ID, "thumbnail", true); ?>" width="70" height="70" alt="<?php the_title(); ?>" /></a>
            <?php else: ?>
                  <a href="<?php the_permalink() ?>" rel="bookmark"><img style="float:left;margin:0px 10px 0px 0px;" width="70" height="70"  src="<?php bloginfo('template_url'); ?>/images/thumbnail.png" alt="<?php the_title(); ?>" /></a>
            <?php endif; ?>            
            <b><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></b>
            <?php the_content_limit(80, ""); ?>
            
            <div style="border-bottom:1px dotted #94B1DF; margin-bottom:10px; padding:0px 0px 10px 0px; clear:both;"></div>
            
            <?php endwhile; ?>

            <!--This is where you can specify the archive link for each section. Replace the # with the appropriate URL-->
            
            <b><a href="#" rel="bookmark">Read More Posts From This Category</a></b>
            
         </div>         
            
      </div>
      
      <div id="homepageright">
      
         <!--This section is currently pulling category ID #1, and can be switched by changing the cat=1 to show whatever category ID you would like in this area.-->
      
         <div class="hpfeatured">
         <h3>Featured Category #2</h3>
         
            <!--This is where the thumbnails are found for the homepage bottom section - note the custom field name for this image is "thumbnail". Recommended image size is 70x70, as the stylesheet is written for this size.-->
         
            <?php $recent = new WP_Query("cat=1&showposts=3"); while($recent->have_posts()) : $recent->the_post();?>
            <?php if( get_post_meta($post->ID, "thumbnail", true) ): ?>
                <a href="<?php the_permalink() ?>" rel="bookmark"><img style="float:left;margin:0px 10px 0px 0px;" src="<?php echo get_post_meta($post->ID, "thumbnail", true); ?>" alt="<?php the_title(); ?>" /></a>
            <?php else: ?>
                  <a href="<?php the_permalink() ?>" rel="bookmark"><img style="float:left;margin:0px 10px 0px 0px;"  src="<?php bloginfo('template_url'); ?>/images/thumbnail.png" alt="<?php the_title(); ?>" /></a>
            <?php endif; ?>            
            <b><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></b>            
            <?php the_content_limit(80, ""); ?>
                        
            <div style="border-bottom:1px dotted #94B1DF; margin-bottom:10px; padding:0px 0px 10px 0px; clear:both;"></div>
            
            <?php endwhile; ?>
            
            <!--This is where you can specify the archive link for each section. Replace the # with the appropriate URL-->
            
            <b><a href="#" rel="bookmark">Read More Posts From This Category</a></b>
            
         </div>      
         
      </div>
      
      <div id="homepagebottom">
      
         <div class="hpbottom">
         
            <h3>Bottom Featured Category</h3>
   
            <!--This is where the thumbnails are found for the homepage bottom section - note the custom field name for this image is "hpbottom". Recommended image size is 70x70, as the stylesheet is written for this size.-->
            
            <?php $recent = new WP_Query("cat=1&showposts=3"); while($recent->have_posts()) : $recent->the_post();?>
            <?php if( get_post_meta($post->ID, "hpbottom", true) ): ?>
                <a href="<?php the_permalink() ?>" rel="bookmark"><img style="float:left;margin:0px 10px 0px 0px;" src="<?php echo get_post_meta($post->ID, "hpbottom", true); ?>" alt="<?php the_title(); ?>" /></a>
            <?php else: ?>
                  <a href="<?php the_permalink() ?>" rel="bookmark"><img style="float:left;margin:0px 10px 0px 0px;"  src="<?php bloginfo('template_url'); ?>/images/thumbnail.png" alt="<?php the_title(); ?>" /></a>
            <?php endif; ?>            
            <b><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></b>
            <?php the_content_limit(350, "[Read more of this review]"); ?>
               
            <div style="border-bottom:1px dotted #2255AA; margin-bottom:10px; padding:0px 0px 10px 0px; clear:both;"></div>
               
            <?php endwhile; ?>
   
            <!--This is where you can specify the archive link for each section. Replace the # with the appropriate URL-->
               
            <b><a href="#" rel="bookmark">Read More Posts From This Category</a></b>
         
         </div>
      
      </div>
      
   </div>
   
<?php include(TEMPLATEPATH."/sidebar.php");?>
      
</div>

<!-- The main column ends  -->

<?php get_footer(); ?>


All I gave you for your ready reference please solved my issue as soon as possible
webmehul
 
Posts: 7
Joined: Fri Sep 04, 2009 6:17 am

Re: Featured main img prob but thumb is comming

PostBy admin on Fri Sep 04, 2009 7:59 am

do you have articleimg custom field specified? give me screenshot of your post
Yelena Khamidullina
Web Applications Developer, iePlexus

1. Check settings to exclude fcg-YOU conflict
2. Try to turn off all your plugins at once to exclude fcg-other plugin conflict
3. Try default theme to exclude fcg-theme conflict
4. Post in this forum to involve me in your troubleshooting. URL is required
User avatar
admin
Site Admin
 
Posts: 4789
Joined: Fri Jan 16, 2009 9:29 am
Location: Seattle, WA

Re: Featured main img prob but thumb is comming

PostBy webmehul on Sat Sep 05, 2009 2:33 am

Image
webmehul
 
Posts: 7
Joined: Fri Sep 04, 2009 6:17 am

Re: Featured main img prob but thumb is comming

PostBy webmehul on Sat Sep 05, 2009 2:34 am

I have uploaded the post edit screen shot which shows the articleimg custom field please look in to this matter ASAP
webmehul
 
Posts: 7
Joined: Fri Sep 04, 2009 6:17 am

Re: Featured main img prob but thumb is comming

PostBy webmehul on Sat Sep 05, 2009 2:56 am

I have solved the issue thank you for your kind support :D
webmehul
 
Posts: 7
Joined: Fri Sep 04, 2009 6:17 am

Re: Featured main img prob but thumb is comming

PostBy webmehul on Sat Sep 05, 2009 4:39 am

can you tell me how can i put the link in to the title in featured
webmehul
 
Posts: 7
Joined: Fri Sep 04, 2009 6:17 am


Return to Development, Improvement, and Conflicts

Who is online

Users browsing this forum: No registered users and 0 guests