aafke
Forum Replies Created
-
Forum: Plugins
In reply to: [qTranslate X] .mo theme files not loading… thank you! It’s that simple… Problem solved.
Wasn’t sure qtranslate-x would find these files in the languages folder by itself or whether I had to include some code. Might it be an idea to add a little information in the faq on how Qtranslatex handles static theme content? It would have been nice to read this somewhere. To have it confirmed that I was on the right way.
Forum: Plugins
In reply to: [Advanced AJAX Page Loader] Retrieve body class ?Thank you stoi2m1! just what i was looking for!
Open the file: ajax-page-loader.js in the Advanced AJAX Page Loader Plugin directory.
Search the document for success.
Past the code within the brackets of this function.Forum: Fixing WordPress
In reply to: Display featured image as background if has_post_thumbnailproblem resolved for anyone interested
<?php if(has_post_thumbnail()) { global $post; $src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), array( 500,500 ), true, '' ); ?> <div class="image" style="background: url( '<?php echo $src[0]; ?>' ) !important;"></div> <?php } else { } ?>
Forum: Fixing WordPress
In reply to: How to align header text with header image?It seems to me you need to resolve this with CSS. You could for example float the elements inside the header-wrap to the left and make sure the added width of both doesn’t surpass the width of the parent.
.header-wrap{ float: left; width: 100%; } .header-nav{ float: left; width: 50%; } .contact-text{ float: left; width: 50%; }
Forum: Themes and Templates
In reply to: Absolute positioning not working in IE7Problem solved, wasn’t something that applies to something general.
<?php global $more; $more = 0; $content = substr(get_the_content(),0,100) . "..."; ?> <div class="post-content"><?=$content?></div>
but the content didn’t have anymore than 100 symboles…
Forum: Themes and Templates
In reply to: 2nd comments template – approved comments not showingThank you some much, ‘ve been looking for the answer for over an hour now! Works allright now!
Forum: Fixing WordPress
In reply to: Assign thumbnails to posts, and display thumbs in sidebarHi, I’m wandering how to do the same thing. Dit you figure it out yet?
Or has anybody else found it out/ knows how to do it?Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Customise NextGEN?Ok thanks! I figured out the stylesheet part now. It starting to look the way I want it to look.
Are there any documents on changing such a file as nggfunctions.php or is it just coming down to php? I guess wanting something like showing a featured gallery in a sitebar has to be written in that file to? Can’t seem to find something like a plugin for that.
Forum: Installing WordPress
In reply to: [Plugin: NextGEN Gallery] Showing Nextgen-galleryI finally found the answer to where and how to put the shortcode.
For people who’re searching for the answer to the same problem as me:Simply place the shortcode [gallery=’id’] within the content box of your post or page. Then make sure you replace the ‘id’ with the id number of your gallery. Refresh and it should work.