linzinz
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: transparent header twenty elevenThanks for your reply. I could not find which was the right php file to change to stretch the #main div down. I have since decided the transparent look was not right for this website so the page background is back to white now. However would still like to know where I would make changes to the structure specifically the #main div. I can’t post a link to the website yet, sorry.
Forum: Fixing WordPress
In reply to: [Event Calendar] Ajax Event Calendar links in descriptionThanks Eran, a nice simple explanation, all works great now!
Finally getting around to doing this. The slideshow is on the home page and the header.php was changed for it to show only on the home page. The second slideshow dimensions are a lot smaller and it needs to be on the same page. Do I add something in the header.php?
<?php if ( is_front_page() ) { if ( function_exists( 'meteor_slideshow' ) ) { meteor_slideshow(); } } else { // Check if this is a post or page, if it has a thumbnail, and if it's a big one
I did have a look at the link you provided before but I need a bit more help with this one!
Forum: Fixing WordPress
In reply to: gallery edits not workingThanks esmi! It seems as though this is the case. All images will be re-sized. How do I increase the memory available anyway?
Forum: Fixing WordPress
In reply to: gallery edits not workingI have asked the other user to upload the images again smaller to see if this works.
Forum: Fixing WordPress
In reply to: gallery edits not workingYes. I just altered a caption on a smaller image and it changed so it does seem as though it has something to do with the size..
Forum: Fixing WordPress
In reply to: gallery edits not workingOne is 2857 × 2250 and a few others are more! I usually make them a lot smaller but the other user has uploaded these. I can’t think what else it could be.
Thanks Josh,
Haven’t had chance to try this yet but thank you anyway!Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] Slider only on homepageThank you so much Josh, worked perfectly!
Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] Slider only on homepageThanks Josh,
I added the code as suggested on the above thread but keep getting a parse error – unexpected else on line 66
Sorry I am new to php and WordPress. I love the plugin by the way, I have tried others that were way too complicated.Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] Slider only on homepageHi Josh,
I am new to WordPress so please excuse my ignorance!
I would like the meteor slideshow to show just on my home page which is static. I used your suggestion above with the conditional statement added<?php if ( is_front_page() ) { if ( function_exists( 'meteor_slideshow' ) ) { meteor_slideshow(); } } ?>
to my child of twenty ten theme and it is playing nicely on just the home page. My problem is that I don’t have my header images displaying on the other pages now as I replaced the original php code with the meteor template code. I do however still have it in the twentyten header.php, it is just commented out.
<!--<?php // Check if this is a post or page, if it has a thumbnail, and if it's a big one if ( is_singular() && current_theme_supports( 'post-thumbnails' ) && has_post_thumbnail( $post->ID ) && ( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'post-thumbnail' ) ) && $image[1] >= HEADER_IMAGE_WIDTH ) : // Houston, we have a new header image! echo get_the_post_thumbnail( $post->ID ); elseif ( get_header_image() ) : ?> <img src="<?php header_image(); ?>" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="" /> <?php endif; ?>-->
Hope you can help!