tallhat
Forum Replies Created
-
Forum: Plugins
In reply to: [Quick Notice Bar] Quick Notice plugin – positioning problemMany thanks for the very quick response and fix on this. much appreciated
ah, i suspect you’re using the Flash slideshow rather than the jquery only option. is ‘Enable flash slideshow’ checked under >gallery >options >slideshow
It’s a random ***jquery*** slideshow for nextgen that would be fantastic to have – given that flash is being frowned upon a bit these days in terms of accessibility.
hi bare,
i thought for a moment the ‘random’ parameter in the slideshow shortcode you were suggesting was my holy grail but it doesn’t appear to work for me. where is the reference for this parameter? i have the latest plugin.
anyone know a way of achieving a random (or shuffled) playback in for a jquery (NOT a flash!) slideshow?Forum: Plugins
In reply to: NextGen Slideshow not workingi had problems with the slideshow and thickbox not working although gallery grids were fine.
firstly make sure your wp_head and wp_footer calls are in place in your theme (usually in the header and footer elements) otherwise things like the thickbox js file don’t get called.in my case my slideshow wasn’t working because i had a clash with a call to an older jquery js file in one of my theme files. so check your jquery versions and calls (check you haven’t got 2 calls to jquery in your compiled pages).
the flash imagerotator location issue can be a red herring. i’m not using the flash version for the slideshow so don’t have anything in the URL field for the imagerotator. lots of the support on this focus on this file location.
Forum: Fixing WordPress
In reply to: "the_meta" call – changes in v3.0.1??ah, this worked
global $post; echo get_post_meta($post->ID, 'sidebar_title', true);seems the ‘global $post’ bit is crucial and possibly a new version 3
requirement??Forum: Fixing WordPress
In reply to: purging old slug definitionsturns out the ‘old slug’ bit was a red herring.
it actually seems to be a really weird (and inconsistent) conflict between an uploaded image ‘title’ and a page slug. the fix seems to be to delete the image in question and reupload.
hard to replicate the problem as it’s inconsistent, so not really sure what really happened…Forum: Requests and Feedback
In reply to: BR Tag Bugyes, i had this. <br clear=”all” /> gets stripped.
the solution is to use <br style=”clear:both;”>
(this is the better XHTML way of doing things. the first way is probably deprecated code.