Viewing 9 replies - 1 through 9 (of 9 total)
  • Thread Starter Elysian

    (@elysian)

    Anyone?

    What could be the problem?

    Basically everything, but with that few details, I just cant tell you what is messing up.

    Always the same answer : did you search for someone else that had the same problem and resolved it ? have you seen this topic ? http://wordpress.org/support/topic/322689 what is your plugin unique ID ?

    Thread Starter Elysian

    (@elysian)

    1118

    Anyways, It isn’t the plugins. yes I read everything. It might be the theme. I really need this fix. I don’t have a problem in giving you access to my website.

    How can I contact you personally?

    Also..It might be a conflict with Jquery with from what I’ve read. Check my next post.

    Thread Starter Elysian

    (@elysian)

    Here’s the header file:

    <?php
    /**
     * @package WordPress
     * @subpackage Magazeen_Theme
     */
    ?>
    <!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('&laquo;', true, 'right'); ?> <?php bloginfo('name'); ?></title>
    
    	<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
    	<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
    	<link rel="alternate" type="application/atom+xml" title="<?php bloginfo('name'); ?> Atom Feed" href="<?php bloginfo('atom_url'); ?>" />
    	<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
    
    <script src="http://koa-cn.com/wparab/wp-includes/js/prototype.js"></script>
    <script src="<?php bloginfo( 'template_directory' ); ?>/js/pngfix.js"></script>
    	<script src="<?php bloginfo( 'template_directory' ); ?>/js/jquery-latest.js"></script>
    	<script src="<?php bloginfo( 'template_directory' ); ?>/js/effects.core.js"></script>
    	<script src="<?php bloginfo( 'template_directory' ); ?>/js/functions.js"></script>
    
    	<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
    
    	<?php wp_head(); ?>
    </head>
    <body>
    
    	<div id="header">
    
    		<div class="container clearfix">
    
    			<div id="logo">
    
    			<h2><?php bloginfo( 'description' ); ?></h2>
    				<h3></h3>
    
    			</div><!-- End logo -->
    
    			<?php include_once( TEMPLATEPATH . '/searchform-header.php' ); ?>
    
    		</div><!-- End Container -->
    
    	</div><!-- End header -->
    
    <?php if (function_exists('pixopoint_menu')) {pixopoint_menu();} ?>
    <br />
    <br />
    <br />
    
    	</div><!-- End navigation -->
    
    	</div><!-- End navigation -->
    
    	<div id="latest-dock">
    
    		<div class="dock-back container clearfix">
    
    			<div class="latest">
    				Check out the Latest Articles:
    			</div>
    
    			<ul id="dock">
    				<?php
    					$dock = new WP_Query();
    					$dock->query( 'showposts=9' );
    					while( $dock->have_posts() ) : $dock->the_post();
    				?>
    				<li>
    					<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
    					<img src="<?php bloginfo( 'template_directory' ); ?>/timthumb.php?src=<?php echo get_post_meta( $post->ID, "image_value", true ); ?>&w=69&h=54&zc=1" alt="<?php the_title(); ?>" />
    					</a>
    					<span><?php the_title(); ?></span>
    				</li>
    				<?php
    					endwhile;
    				?>
    			</ul>
    
    		</div><!-- End container -->
    
    	</div><!-- End latest-dock -->

    and here’s index.php until the shortcode:

    <?php
    /**
     * @package WordPress
     * @subpackage Default_Theme
     */
    
    get_header(); ?>
    
    	<div id="main-content" class="clearfix">
    
    		<div class="container">
    
    			<div class="col-580 left">
    
    				<?php
    					query_posts( 'showposts=2' );
    					if (have_posts()) :
    						while (have_posts()) : the_post(); $category = get_the_category();
    				?>
    
    				<div <?php post_class(); ?>>
    
    					<div class="post-meta clearfix">
    
    						<h3 class="post-title left"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
    
    						<p class="post-info right">
    							<span>By <?php the_author_posts_link(); ?></span>
    							<?php the_time( 'l F j, Y' ) ?>
    						</p>
    
    					</div><!-- End post-meta -->
    
    					<div class="post-box">
    
    						<div class="post-content">
    
    							<div class="comment-count">
    								<?php comments_popup_link(__( '0 Comments' ), __( '1 Comment' ), __( '% Comments' )); ?>
    							</div>
    
    							<?php if( get_post_meta( $post->ID, "image_value", true ) ) : ?>
    
    							<div class="post-image">
    <?php
    // added by <yourname> in order to add the slideshow using the frontpage-slideshow plugin
    echo do_shortcode('[FrontpageSlideshow]');
    ?>

    No need to post code in here : with the unique plugin ID I got the direct URI of you web site so I can have a look safely for you.

    You are right : the theme is messing because it includes javascript frameworks badly. here is a fix :

    You just have to edit header.php (from theme) and suppress those lines :

    <script src="http://koa-cn.com/wparab/wp-includes/js/prototype.js"></script>
    <script src="<?php bloginfo( 'template_directory' ); ?>/js/pngfix.js"></script>
    	<script src="<?php bloginfo( 'template_directory' ); ?>/js/jquery-latest.js"></script>
    	<script src="<?php bloginfo( 'template_directory' ); ?>/js/effects.core.js"></script>
    	<script src="<?php bloginfo( 'template_directory' ); ?>/js/functions.js"></script>

    and put this instead :

    <?php
    wp_enqueue_script('bizmax-functions',bloginfo( 'template_directory' ).'/magazeen-wordpress-theme/magazeen/js/functions.js',array('scriptaculous-effects'),'1.0');
    wp_enqueue_script('bizmax-pngfix',bloginfo( 'template_directory' ) . '/magazeen-wordpress-theme/magazeen/js/pngfix.js',array(),'1.0');
    ?>

    I have just edited the post above to correct it.

    Thread Starter Elysian

    (@elysian)

    I replaced the code with the one you said.. It got worse I guess. Check:

    http://koa-cn.com/wparab/

    I see : contact me and give me some access to your blog as you asked for

    jeff_

    (@jeff_)

    still stucked ?

Viewing 9 replies - 1 through 9 (of 9 total)

The topic ‘Help! Frontpage Slideshow’ is closed to new replies.