Jesse Techno
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Fixing WordPress
In reply to: Cheatin’ uh? Issue!I take it back… it was NOT a theme forest theme! Its from MoJo…
If I give someone access to that FTP can you look at it?
Forum: Fixing WordPress
In reply to: Cheatin’ uh? Issue!Thats what I figured :/. I am using theme forest so I will ask them. Thank you SOOOO much.
Forum: Plugins
In reply to: Need to add a video player to a theme that has popup (Boxoffice)Here is the code in the file I think I need to change:
<?php get_header(); ?> <div id="content" > <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <div class="title"> <h2><?php the_title(); ?></h2> </div> <div class="entry"> <div class="mposter"> <div class="theposter"> <span class="overlay"></span> <?php $video=get_post_meta($post->ID, 'wtf_video', true); ?> <?php if ( has_post_thumbnail() ) { ?> <a rel="prettyPhoto[gallery]" href="<?php echo stripslashes ($video); ?>"><img class="boximg posthov" src="<?php bloginfo('stylesheet_directory'); ?>/timthumb.php?src=<?php get_image_url(); ?>&h=270&w=180&zc=1" alt=""/></a> <?php } else { ?> <a rel="prettyPhoto" href="<?php echo stripslashes ($video); ?>"><img class="boximg posthov" src="<?php bloginfo('template_directory'); ?>/images/dummy.png" alt="" /></a> <?php } ?> </div> <div class="postermeta"> <span>Year : <?php $ryear=get_post_meta($post->ID, 'wtf_ryear', true); echo $ryear; ?></span> <span>Director : <?php $director=get_post_meta($post->ID, 'wtf_dirctr', true); echo $director; ?></span> <span>Running Time : <?php $runtime=get_post_meta($post->ID, 'wtf_runtime', true); echo $runtime; ?></span> <span>Genre : <?php echo get_the_term_list( $post->ID, 'movie-genre', '', ', ', '' ); ?></span> </div> </div> <div class="mainscore clearfix"> <div class="revscore"> <span class="revscoretitle">Movie review score </span> <span class="single-sholder"> <span class="single-scorebar score-<?php $rscore=get_post_meta($post->ID, 'wtf_rscore', true); echo $rscore; ?>"> </span> </span> </div> <div class="revscorebox"> <?php $rscore=get_post_meta($post->ID, 'wtf_rscore', true); echo $rscore; ?>/5 </div> </div> <?php the_content('Read the rest of this entry »'); ?> <div class="clear"></div> <?php wp_link_pages(array('before' => '<p><strong>Pages: </strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> </div> </div> <?php comments_template(); ?> <?php endwhile; else: ?> <h1 class="title">Not Found</h1> <p>I'm Sorry, you are looking for something that is not here. Try a different search.</p> <?php endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
Thanks guys! I got it!
In the file wp-config.php the <?php was on the top where it was made to be but it was NOT all the way to the left! Once i removed the spaces it was good!
Thanks Christine & govpatel
Viewing 4 replies - 1 through 4 (of 4 total)