jakeyy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: prototype / jQuery / Read More Right Here pluginMaybe I didn’t explain it properly…
When you click the more… button it doesn’t move vertically with the new content.
The horizontal positioning isn’t a huge deal ??
J.
Forum: Themes and Templates
In reply to: 10PAD2RISINGSUN theme error?I’d assume it would be somewhere along the lines of ./wp-content/themes/<custom theme name>/images/banners
??
Good luck!
Forum: Themes and Templates
In reply to: Add To Any / Read More Right Here plugin conflictsSwitched to the sharethis plugin, works nicely :0
Forum: Themes and Templates
In reply to: prototype / jQuery / Read More Right Here pluginDidn’t manage to fix it, it’s still staying in the centre of the post across all browsers for me. Any suggestions?
Forum: Themes and Templates
In reply to: Heder.php file is empty when I open itIf you can see it in the WP editor I’d assume it’s a problem with your text editor. I suggest you buy a license for bbedit, it’s amazing.
Also, if you’re using textedit then you have to manually set the syntax (As far as I can remember).
Forum: Themes and Templates
In reply to: Font size for single post/pageOn second inspection, looks like you could style all your post content with a single sweep.
div.post rounded { rules go here }
Forum: Themes and Templates
In reply to: Font size for single post/pageTo keep them seperate it’s probably better to enclose the text you want to change in div tags and style them directly in the CSS.
Forum: Themes and Templates
In reply to: Displaying perfectly on OSX but not on WindowsAhhh, thanks!
That’s closed now. Still a few errors but I doubt any of them are the cause of the problems I’m experiencing. ??
Forum: Themes and Templates
In reply to: Displaying perfectly on OSX but not on Windowswoop.
Down to seven errors and the last ones I can’t clear, still no change on IE though ??
I get the feeling it’s something to do with
<embed>
As for Firefox I’m completely stumped. Works fine on my mac but windows FX just kills it. Nothing’s aligning D:
Forum: Themes and Templates
In reply to: Displaying perfectly on OSX but not on WindowsI’m doing that now ??
No change as of yet!
I’ll keep looking…
Forum: Themes and Templates
In reply to: FIle heirarchy / custom index pageis_home()
When the main blog page is being displayed. (WordPress 2.1 handles this function differently than prior versions. See Alternate Methods for Setting the Front Page for pre-2.1 WP.)Note: If you select a static Page as your frontpage (see below), this tag will be applied to your “posts page”.
??
is_front_page() worked perfectly!
Thanks mate! You’ve been a great help!
Forum: Themes and Templates
In reply to: FIle heirarchy / custom index pageAh,
Tried that and for some reason it wasn’t happening for me although it seems a logical solution. Are the div tags necessary?
Also, you should check for emails for a paypal receipt. It’s not much but better than a kick in the mouth I suppose ??
//EDIT//
Actually it’s working in weird and wonderful ways!
If i hit the page I set as posts page in WP settings it works…
Strange :O
Forum: Themes and Templates
In reply to: FIle heirarchy / custom index pageAh. I think it may be one of my many PHP errors. Playing with the loop in index.php displays the .swf albeait in a tiny window.
Setting permalinks and playing with this loop appears to be solving the root of the problem.
Now i just need to work out how to get the flash displaying outside of the post area ?? (It’s a full screen background).
My index.php:
<?php get_header(); ?> <?php get_sidebar(); ?> <?php /* The Loop — with comments! */ ?> <?php while ( have_posts() ) : the_post() ?> <?php /* Create a div with a unique ID thanks to the_ID() and semantic classes with post_class() */ ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php /* an h2 title */ ?> <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( __('Permalink to %s', 'your-theme'), the_title_attribute('echo=0') ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <?php /* Microformatted, translatable post meta */ ?> <div class="entry-meta"> <span class="meta-prep meta-prep-author"><?php _e('By ', 'your-theme'); ?></span> <span class="author vcard"><a class="url fn n" href="<?php echo get_author_link( false, $authordata->ID, $authordata->user_nicename ); ?>" title="<?php printf( __( 'View all posts by %s', 'your-theme' ), $authordata->display_name ); ?>"><?php the_author(); ?></a></span> <span class="meta-sep"> | </span> <span class="meta-prep meta-prep-entry-date"><?php _e('Published ', 'your-theme'); ?></span> <span class="entry-date"><abbr class="published" title="<?php the_time('Y-m-d\TH:i:sO') ?>"><?php the_time( get_option( 'date_format' ) ); ?></abbr></span> <?php edit_post_link( __( 'Edit', 'your-theme' ), "<span class=\"meta-sep\">|</span>\n\t\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t" ) ?> </div><!– .entry-meta –> <?php /* The entry content */ ?> <div class="entry-content"> <?php the_content( __( 'Continue reading <span class="meta-nav">»</span>', 'your-theme' ) ); ?> <?php wp_link_pages('before=<div class="page-link">' . __( 'Pages:', 'your-theme' ) . '&after=</div>') ?> </div><!– .entry-content –> <?php /* Microformatted category and tag links along with a comments link */ ?> <div class="entry-utility"> <span class="cat-links"><span class="entry-utility-prep entry-utility-prep-cat-links"><?php _e( 'Posted in ', 'your-theme' ); ?></span><?php echo get_the_category_list(', '); ?></span> <span class="meta-sep"> | </span> <?php the_tags( '<span class="tag-links"><span class="entry-utility-prep entry-utility-prep-tag-links">' . __('Tagged ', 'your-theme' ) . '</span>', ", ", "</span>\n\t\t\t\t\t\t<span class=\"meta-sep\">|</span>\n" ) ?> <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'your-theme' ), __( '1 Comment', 'your-theme' ), __( '% Comments', 'your-theme' ) ) ?></span> <?php edit_post_link( __( 'Edit', 'your-theme' ), "<span class=\"meta-sep\">|</span>\n\t\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t\n" ) ?> </div><!– #entry-utility –> </div><!– #post-<?php the_ID(); ?> –> <?php /* Close up the post div and then end the loop with endwhile */ ?> <?php endwhile; ?> <?php get_footer(); ?>
Any ideas? ??
Also, thank you for helping esmi, it’s appreciated. Do you have a Paypal account where you can take a donation?
Forum: Themes and Templates
In reply to: FIle heirarchy / custom index pageI tried this and it didn’t work ??
The code I’m trying to add:
<object width="550" height="400"> <param name="movie" value="somefilename.swf"> <embed src="https://**********.com/blog/wp-content/themes/******/fullscreenBG.swf" width="100%" height="100%"> </embed> </object>
I’m not sure if you can use object tags within the WP html editor. ??
// EDIT //
I’ve noticed when I edit either of my created pages from within WP the permalinks are showing as https://*******.com/blog
Not sure if this is of any relevance…
Forum: Themes and Templates
In reply to: Simple question about multiple pageshttps://www.livexp.net/wordpress/display-the-loop-using-wordpress-shortcode.html
Worked perfectly ??