Featured Content Gallery | WordPress Plugin | iePlexus

Where should i put the code exactly ? Please help me.

Downloading, installing, upgrading, and configuring the FCG plugin

Re: Where should i put the code exactly ? Please help me.

PostBy admin on Wed Aug 18, 2010 9:11 am

Thank you for your reply

I did not reply to you yet at all..
Should I have to put it again so you could see it working?

yes please
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: 4738
Joined: Fri Jan 16, 2009 9:29 am
Location: Seattle, WA

Re: Re: Where should i put the code exactly ? Please help me.

Thank you for using the Featured Content Gallery Forum
 

Re: Where should i put the code exactly ? Please help me.

PostBy agnesy on Sat Aug 21, 2010 5:39 am

Hi there..I need help with this..Can't get the gallery working.

http://www.trio.com.my/

Why does the posts repeat itself?
Thanks!
agnesy
 
Posts: 1
Joined: Sat Aug 21, 2010 5:38 am

Re: Where should i put the code exactly ? Please help me.

PostBy admin on Mon Aug 23, 2010 8:21 am

it looks like it is custom theme and very important part is missing in header.php file of your theme
Code: Select all
<?php wp_head() ?>
, check on this piece of code
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: 4738
Joined: Fri Jan 16, 2009 9:29 am
Location: Seattle, WA

Re: Where should i put the code exactly ? Please help me.

PostBy tdot647 on Thu Sep 09, 2010 2:42 pm

Hi, :D
I wanna try the INDEX.PHP and the HEADER.PHP to find out which one works.

Please help me - my HEADER html below(header.php)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type') ?>; charset=<?php bloginfo('charset') ?>" />
<title><?php wp_title( '|', true, 'right' ); bloginfo( 'name' ); ?></title>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url') ?>" type="text/css" media="screen" />
<!--[if IE 6]><link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/style.ie6.css" type="text/css" media="screen" /><![endif]-->
<!--[if IE 7]><link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/style.ie7.css" type="text/css" media="screen" /><![endif]-->
<?php if(WP_VERSION < 3.0): ?>
<link rel="alternate" type="application/rss+xml" title="<?php printf(__('%s RSS Feed', THEME_NS), get_bloginfo('name')); ?>" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="<?php printf(__('%s Atom Feed', THEME_NS), get_bloginfo('name')); ?>" href="<?php bloginfo('atom_url'); ?>" />
<?php endif; ?>
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php if (is_file(TEMPLATEPATH .'/favicon.ico')):?>
<link rel="shortcut icon" href="<?php bloginfo('template_directory'); ?>/favicon.ico" />
<?php endif; ?>
<?php wp_head(); ?>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/script.js"></script>
</head>
<body <?php if(function_exists('body_class')) body_class(); ?>>
<?php
ob_start();

==========================================
Main Index Template below (index.php)

<?php
get_header();

if (have_posts())
{
while (have_posts())
{
art_post();
}
art_page_navi();
} else {
art_not_found_msg();
}

get_footer();

===============================

Where can I place the gallery code.
Thank you in advance. :idea:
tdot647
 
Posts: 5
Joined: Wed Sep 08, 2010 3:23 pm

Re: Where should i put the code exactly ? Please help me.

PostBy admin on Thu Sep 09, 2010 4:38 pm

try in index.php
like this
Code: Select all
<?php
get_header();
include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php');
if (have_posts())
{
while (have_posts())
{
art_post();
}
art_page_navi();
} else {
art_not_found_msg();
}

get_footer();
?>

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: 4738
Joined: Fri Jan 16, 2009 9:29 am
Location: Seattle, WA

Re: Where should i put the code exactly ? Please help me.

PostBy tdot647 on Thu Sep 09, 2010 10:09 pm

AWESOME ! ! Thank you ! the code worked.

2 things.

1. How can I add a padding around the gallery slider? The top portion is overlaping the horizontal menu by 1 px

2. Is there a posibility you can help me with the HEADER.PHP?

Thank you

=================



admin wrote:try in index.php
like this
Code: Select all
<?php
get_header();
include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php');
if (have_posts())
{
while (have_posts())
{
art_post();
}
art_page_navi();
} else {
art_not_found_msg();
}

get_footer();
?>

tdot647
 
Posts: 5
Joined: Wed Sep 08, 2010 3:23 pm

Re: Where should i put the code exactly ? Please help me.

PostBy tdot647 on Fri Sep 10, 2010 1:06 am

Hi, :?:

Where can I get this PLUGIN for FCG

"Gallery size and css option"

TY :)
tdot647
 
Posts: 5
Joined: Wed Sep 08, 2010 3:23 pm

Re: Where should i put the code exactly ? Please help me.

PostBy mvt888 on Tue Sep 14, 2010 10:26 am

I know this topic has been beaten to a pulp, but I still can't get it work. If anyone can help, it'd be awesome. Here's my website: http://www.mainemonty.com/

Here's my index.php:

<?php get_header(); ?>
<?php include (ABSPATH . '/wp-content/plugins/featured-content-gallery/gallery.php'); ?>
<?php
while (have_posts()) : the_post();
include(dirname(__FILE__).'/post.php');
endwhile;
?>
<?php get_footer(); ?>
mvt888
 
Posts: 2
Joined: Tue Sep 14, 2010 10:23 am

Re: Where should i put the code exactly ? Please help me.

PostBy admin on Tue Sep 14, 2010 10:34 am

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: 4738
Joined: Fri Jan 16, 2009 9:29 am
Location: Seattle, WA

Re: Where should i put the code exactly ? Please help me.

PostBy mvt888 on Tue Sep 14, 2010 10:57 am

you must have insane patience after so many threads....

but thanks that worked :) although I had to also disable lightbox, no biggie, can't have it all.
mvt888
 
Posts: 2
Joined: Tue Sep 14, 2010 10:23 am

PreviousNext

Return to Getting Started

Who is online

Users browsing this forum: No registered users and 0 guests