jimboready
Forum Replies Created
-
Forum: Plugins
In reply to: Flash frontend.Sorry for the delay.
Forum: Plugins
In reply to: Flash frontend.This source is awesome. It has great potential.. I’ve buit a version that loads a thumbnail (specified in a custom field) into flash for each post of a certain category. https://www.jimboready.com/playground/wpflash.html
I’m using it in my portfolio site: https://www.jimboready.com/I’m gonna spend a few days tidying it up and then I’ll release the sources and hopefully provoke some more flash/wordpress experimentation.
Forum: Fixing WordPress
In reply to: .swf won’t load in IEare you trying to load external variables or files into the flash? If so it’s almost certainly something to do with the html code. I had the same problem a while ago.. if you re-publish the flash and copy the code again it should work.
Let me know how it goes.
Forum: Plugins
In reply to: Where are the special fields stored?yeah that’s the one.. Thanks!
Forum: Your WordPress
In reply to: WordPress powered portfolio.The gallery’s done with two custom fields. one of them’s the url of the thumbnail (thumbnail), the other’s a small javascript snippet that calls the popup (pic), which looks like:
‘image name’, ‘width’, ‘height’
There’s a php gallery page that loads the pic depending on the url extension, and a popup script that loads the gallery page and resizes the window.
The popup script and a link to the post (containing the pic info) are both called when you click the thumbnail. So it looks like this:
<?php
$posts = get_posts(‘numberposts=10&category=6’);
foreach ($posts as $post) : start_wp();
if(get_post_custom_values(‘pic’)) :
foreach(get_post_custom_values(‘pic’) as $pic) {
echo ‘onclick=”javascript:Popup(‘ . $pic . ‘)”‘;
}
endif;
?>
onmouseover=”return escape(‘<?php the_title(); ?>’)”>
<?php
if(get_post_custom_values(‘thumbnail’)) :
foreach(get_post_custom_values(‘thumbnail’) as $img) {
echo ‘<img src=”‘ . $img . ‘” alt=”” border=”0″/>’;
}
endif;
endforeach; ?>I can send you the gallery file and popup script if you wanna have a play with it.
Cheers,
– Jim.
Forum: Fixing WordPress
In reply to: Help?! site only shows 2 posts in ieFixed it. I just deleted all the posts and reposted them.. very strange..
Forum: Fixing WordPress
In reply to: Help?! site only shows 2 posts in ieah!
for some reason I can only see half the posts when I’m logged in.
Forum: Fixing WordPress
In reply to: Only displaying one categoryI know why.. because it only shows 2 posts in IE.. this is really wierd:
Forum: Your WordPress
In reply to: Clickpiss- New wordpress powered siteintouch for the submission form and show category posts to allow me to only show certain categories on each page.. such as the submissions page and the FAQ.
Forum: Fixing WordPress
In reply to: Ony display certain categories.Fantastic! thanks a lot.
Forum: Plugins
In reply to: Related links in templateThat’s fantastic, I’ve managed to do it with custom fields.
The site’s https://www.clickpiss.com/ (not quite finished but getting there).
Thanks for the help.
Jim.
Forum: Plugins
In reply to: Display a unique avatar with each postThat’s absolutely fantastic.
I had a feeling I could use custom fields in some way but I’ve never really understood them.
Thanks a lot!
Forum: Plugins
In reply to: Display a unique avatar with each postIt needs to be a picture related to the post really. So a unique picture for each post, that can be chosen/uploaded/linked to when the post is written.
Thanks.
Forum: Plugins
In reply to: Set the max number of posts per page?‘s ok.. I got it now.
Thanks!
Forum: Plugins
In reply to: Set the max number of posts per page?Any idea how I can set that up?