Featured Content Gallery | WordPress Plugin | iePlexus

Plugin displayd only when I login in WordPress

Customizing the FCG plugin and more

Plugin displayd only when I login in WordPress

PostBy vsakthisudhan on Sun Nov 28, 2010 9:19 am

I have added the plugin in home page ,

<?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; ?>

The images get displayed only when I login wordpress and in other time no picture get displayed in the plugin. Kindly help me to sort out this problem.
vsakthisudhan
 
Posts: 2
Joined: Sun Nov 28, 2010 8:57 am

Re: Plugin displayd only when I login in WordPress

Thank you for using the Featured Content Gallery Forum
 

Re: Plugin displayd only when I login in WordPress

PostBy admin on Mon Nov 29, 2010 10:35 am

url?
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: Plugin displayd only when I login in WordPress

PostBy vsakthisudhan on Mon Nov 29, 2010 10:39 am

My URL is,

www.techepitome.com

Kindly help me.....
vsakthisudhan
 
Posts: 2
Joined: Sun Nov 28, 2010 8:57 am

Re: Plugin displayd only when I login in WordPress

PostBy admin on Tue Nov 30, 2010 2:53 pm

try to turn off other plugins to see which one is causing the problem. Social bookmarks plugin could be the issue
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: Plugin displayd only when I login in WordPress

PostBy kortita on Wed Jan 05, 2011 1:06 am

Hi,

I just Moving my site in to new server, in last server the FCG can be showing, but after i move my site in to new server at addon domain my FCG can not be showing, please help me.

Last server FCG Work fine, http://bestholidaytraveltips.com
New Server FCG can not work, http://cheapholsdeals.com

I was follow you intruction
- Deactive all plugin
- change themes to default themes
- Uninstal Plugin and delete from directory and the re-upload

I Use themes Church40 Studio Press
this is my home.php.

<?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">

<div class="hpfeatured">
<h3><?php echo cat_id_to_name(get_theme_mod('featured_top_left')); ?></h3>

<?php $recent = new WP_Query("cat=".get_theme_mod('featured_top_left')."&showposts=".get_theme_mod('featured_top_left_num')); while($recent->have_posts()) : $recent->the_post();?>
<?php if( get_post_meta($post->ID, "thumb", true) ): ?>
<a href="<?php the_permalink() ?>" rel="bookmark"><img class="thumb" src="<?php bloginfo('template_directory'); ?>/tools/timthumb.php?src=<?php echo get_post_meta($post->ID, "thumb", $single = true); ?>&amp;h=<?php echo get_theme_mod('featured_top_left_thumb_height'); ?>&amp;w=<?php echo get_theme_mod('featured_top_left_thumb_width'); ?>&amp;zc=1" alt="<?php the_title(); ?>" /></a>
<?php else: ?>
<?php endif; ?>

<strong><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></strong>
<?php the_content_limit(80, ""); ?>

<hr/>

<?php endwhile; ?>
<?php $cat = get_category(get_theme_mod('featured_top_left')); ?>
<strong><a href="<?php echo get_category_link(get_theme_mod('featured_top_left')); ?>" rel="bookmark"><?php echo __("Read More Posts From ", 'studiopress')." ".$cat->name; ?></a></strong>

</div>

</div>

<div id="homepageright">

<div class="hpfeatured">
<h3><?php echo cat_id_to_name(get_theme_mod('featured_top_right')); ?></h3>

<?php $recent = new WP_Query("cat=".get_theme_mod('featured_top_right')."&showposts=".get_theme_mod('featured_top_right_num')); while($recent->have_posts()) : $recent->the_post();?>
<?php if( get_post_meta($post->ID, "thumb", true) ): ?>
<a href="<?php the_permalink() ?>" rel="bookmark"><img class="thumb" src="<?php bloginfo('template_directory'); ?>/tools/timthumb.php?src=<?php echo get_post_meta($post->ID, "thumb", $single = true); ?>&amp;h=<?php echo get_theme_mod('featured_top_right_thumb_height'); ?>&amp;w=<?php echo get_theme_mod('featured_top_right_thumb_width'); ?>&amp;zc=1" alt="<?php the_title(); ?>" /></a>
<?php else: ?>
<?php endif; ?>

<strong><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></strong>
<?php the_content_limit(80, ""); ?>

<hr/>

<?php endwhile; ?>
<?php $cat = get_category(get_theme_mod('featured_top_right')); ?>
<strong><a href="<?php echo get_category_link(get_theme_mod('featured_top_right')); ?>" rel="bookmark"><?php echo __("Read More Posts From ", 'studiopress')." ".$cat->name; ?></a></strong>

</div>

</div>

<div id="homepagebottom">

<div class="hpbottom">
<h3><?php echo cat_id_to_name(get_theme_mod('featured_bottom')); ?></h3>

<?php $recent = new WP_Query("cat=".get_theme_mod('featured_bottom')."&showposts=".get_theme_mod('featured_bottom_num')); while($recent->have_posts()) : $recent->the_post();?>
<?php if( get_post_meta($post->ID, "thumb", true) ): ?>
<a href="<?php the_permalink() ?>" rel="bookmark"><img class="thumb" src="<?php bloginfo('template_directory'); ?>/tools/timthumb.php?src=<?php echo get_post_meta($post->ID, "thumb", $single = true); ?>&amp;h=<?php echo get_theme_mod('featured_bottom_thumb_height'); ?>&amp;w=<?php echo get_theme_mod('featured_bottom_thumb_width'); ?>&amp;zc=1" alt="<?php the_title(); ?>" /></a>
<?php else: ?>
<?php endif; ?>

<strong><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></strong>
<?php the_content_limit(350, __("[Read more of this review]", 'studiopress')); ?>

<hr/>

<?php endwhile; ?>

<?php $cat = get_category(get_theme_mod('featured_bottom')); ?>
<strong><a href="<?php echo get_category_link(get_theme_mod('featured_bottom')); ?>" rel="bookmark"><?php echo __("Read More Posts From ", 'studiopress')." ".$cat->name; ?></a></strong>

</div>

</div>

</div>

<?php include(TEMPLATEPATH."/sidebar.php");?>

</div>

<?php // The main column ends ?>

<?php get_footer(); ?>
kortita
 
Posts: 2
Joined: Wed Jan 05, 2011 12:36 am

Re: Plugin displayd only when I login in WordPress

PostBy admin on Wed Jan 05, 2011 9:18 am

check permissions on wp-content folder and fcg plugin folder, should be 755
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: Plugin displayd only when I login in WordPress

PostBy kortita on Wed Jan 05, 2011 10:32 am

Hi,
Thanks you thank you so much..........
FCG now showing in my homepage,
i just try your instruction change permission to 755, i see FCG and WP content has been 755 but i try change again, then FCG showing.

Love you and god bless you

KING REGARDS
kortita
kortita
 
Posts: 2
Joined: Wed Jan 05, 2011 12:36 am

Re: Plugin displayd only when I login in WordPress

PostBy admin on Wed Jan 05, 2011 11:42 am

yw
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


Return to Plugin Settings, Features, and Options

Who is online

Users browsing this forum: No registered users and 0 guests

cron