Hello,
I just added the FCG to a wordpress: http://www.wrb3cpa.com/wordpress
I am trying to put it below the welcome content on the home page (in the middle of the page, below the "welcome" text). I put a text widget below the main content text widget and enter the code for the FCG (<?php include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php'); ?>) but it still shows up above the main content text area. The page shows an empty text area where the FCG is suppose to go. Is there any way to fix this. Your help is VERY much appreciated. Thanks in advance.
Jacob
Positioning the FCG
8 posts • Page 1 of 1
Re: Positioning the FCG
I did not understand..when you add the code it show 2 fcgs?
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
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
-

admin - Site Admin
- Posts: 4789
- Joined: Fri Jan 16, 2009 9:29 am
- Location: Seattle, WA
Re: Positioning the FCG
I am sorry. No, it does not show 2 different FCG's. It shows only 1 and it looks great. The only problem is that it seems like it defaults to show the FCG at the top of my page: http://www.wrb3cpa.com/wordpress . I want it to display below the welcome content or text area but it automatically shows up at the top of my page, right below the navigation bar. I attempted to fix this problem by adding a text widget underneath my Main text widget, which is where I want the FCG to show. When I place the code in the text widget below the Main text widget it still shows the FCG at the top of the page, above the welcome content. It sounds confusing but I hope you can help, thanks again.
- Jacob
- Posts: 6
- Joined: Thu Oct 15, 2009 6:25 am
Re: Positioning the FCG
give me the code your page where you add the gallery call
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
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
-

admin - Site Admin
- Posts: 4789
- Joined: Fri Jan 16, 2009 9:29 am
- Location: Seattle, WA
Re: Positioning the FCG
I just placed the code that it tells you to in a text widget in the homepage middle section of the wordpress theme.
The code is:
<?php include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php'); ?>
There is a text widget I place right above this one that has the welcome text but the fcg keeps showing up on top of the welcome text.
The code is:
<?php include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php'); ?>
There is a text widget I place right above this one that has the welcome text but the fcg keeps showing up on top of the welcome text.
- Jacob
- Posts: 6
- Joined: Thu Oct 15, 2009 6:25 am
Re: Positioning the FCG
the gallery call usually does not work in widget
you need to put it in index.php or home.php directly
you need to put it in index.php or home.php directly
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
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
-

admin - Site Admin
- Posts: 4789
- Joined: Fri Jan 16, 2009 9:29 am
- Location: Seattle, WA
Re: Positioning the FCG
Oh, really? Ok so I took the code out of the text widget, but now it is still on my page. I am not at all experienced with code but I opened my home.php and found the homepage middle part and I placed the code right beneath that. Now it shows an empty box on my page where I want the FCG to go and it still has the original one on the top of the page. http://www.wrb3cpa.com/wordpress .
Here is the code in the home.php
<?php get_header(); ?>
<div id="content">
<div id="homepage">
<div class="homepageleft">
<?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="fcg">
<?php include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php'); ?>
</div>
<?php endif; ?>
<ul id="home_middle_widget">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Homepage Middle') ) : ?>
<li id="home_middle">
<div class="widget">
<h2>Homepage Middle Widget</h2>
<p>This is an example of a text widget that you can place to describe a particular product or service. Use it as a way to get your visitors interested, so they can click through and read more about it.</p>
</div>
</li>
<?php endif; ?>
</ul>
<?php include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php'); ?>
<div style="clear:both;"></div>
<div class="hpbottomleft">
<ul id="home_bottom_left_widget">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Homepage Bottom Left') ) : ?>
<li id="home_bottom_left">
<div class="widget">
<h2>Homepage Bottom Left Widget</h2>
<p>This is an example of a text widget that you can place to describe a particular product or service. Use it as a way to get your visitors interested, so they can click through and read more about it.</p>
</div>
</li>
<?php endif; ?>
Here is the code in the home.php
<?php get_header(); ?>
<div id="content">
<div id="homepage">
<div class="homepageleft">
<?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="fcg">
<?php include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php'); ?>
</div>
<?php endif; ?>
<ul id="home_middle_widget">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Homepage Middle') ) : ?>
<li id="home_middle">
<div class="widget">
<h2>Homepage Middle Widget</h2>
<p>This is an example of a text widget that you can place to describe a particular product or service. Use it as a way to get your visitors interested, so they can click through and read more about it.</p>
</div>
</li>
<?php endif; ?>
</ul>
<?php include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php'); ?>
<div style="clear:both;"></div>
<div class="hpbottomleft">
<ul id="home_bottom_left_widget">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Homepage Bottom Left') ) : ?>
<li id="home_bottom_left">
<div class="widget">
<h2>Homepage Bottom Left Widget</h2>
<p>This is an example of a text widget that you can place to describe a particular product or service. Use it as a way to get your visitors interested, so they can click through and read more about it.</p>
</div>
</li>
<?php endif; ?>
- Jacob
- Posts: 6
- Joined: Thu Oct 15, 2009 6:25 am
Re: Positioning the FCG
Problem Solved!
I found the small code I missed and I took it out. That is why it was showing up at the top.
I found the small code I missed and I took it out. That is why it was showing up at the top.
- Jacob
- Posts: 6
- Joined: Thu Oct 15, 2009 6:25 am
8 posts • Page 1 of 1
Return to Plugin Settings, Features, and Options
Who is online
Users browsing this forum: No registered users and 0 guests









