ewon
Forum Replies Created
-
Forum: Plugins
In reply to: [radSLIDE] [Plugin: radSLIDE] Add Thumbnails w/ pagerAnchorBuilderHi folks,
I figured it out. Here’s what I’ve got to make radSLIDE output thumbnails as the pager:
FOR RADSLIDE TEMPLATE
<div class="gallery" style="background: url('IMAGE_URL') no-repeat;"> <div class="description">TITLE: DESCRIPTION</div> <div class="url" style="display: none;">IMAGE_URL</div> </div>FOR RADSLIDE JQUERY OPTIONS
{ timeout:0, speed:750, pager: '#project-thmbs', pagerEvent:'click.cycle', pagerAnchorBuilder: function(idx, slide) { return '<li><a href="#"><img src="' + jQuery(slide).find('.url').text() + '" alt="" width="100" /></a></li>' } }FOR HTML PAGER ITEM
<ul id="project-thmbs"> </ul>Hope this helps someone else and saves them hours of work!
Forum: Plugins
In reply to: [radSLIDE] [Plugin: radSLIDE] Add Thumbnails w/ pagerAnchorBuilderI inquired again about getting thumbnails rather than numbers and received this response:
————————————————
The reason element.src worked for them is their slideshow is just a collection of images, not a collection of divs like yours. Images have a src attribute, but your div has a bunch of stuff in it, not just an image. I no longer have my example setup anymore, but if you’re using jquery you can probably do something like this to get the src of the image:
$(‘img’, element).attr(‘src’)
That will look in the element for an <img> tag, and give you the src of it. I haven’t tested it though, so I might have gotten the syntax wrong.
————————————————
I’ve tried several different syntax variations but do not know enough to solve the problem. Any know? Here’s what I have that is not working:
{ timeout:0, speed:750, pager:'#project-thmbs', pagerAnchorBuilder: function(index, element) { var img = jQuery(element).children("img").attr("src"); return '<li><a href="#"><img src="' + img + '" width="100" /></a></li>'; } }Forum: Plugins
In reply to: [radSLIDE] [Plugin: radSLIDE] Add Thumbnails w/ pagerAnchorBuilderI received an email back from the developers of the plugin with the following information:
—————————-
Hi ewon,I’ve never actually used pagerAnchorBuilder before now, but I just got it working with radSLIDE. It’s just not the simplest to set up. For pagerAnchorBuilder to work, you also need to set a pager div. So, for example, if you want to put the slideshow on a page in wordpress, you have to edit that page, switch to HTML mode, and write something like this:
radslide 1
<div id=”radslide-pager”></div>Then when you’re editing the settings of your slideshow, they need to look something like this:
{
timeout:2000,
speed:500,
pager: ‘#radslide-pager’,
pagerAnchorBuilder: function(index, element){
return ‘<p>SLIDE ‘+index+'</p>’;
}
}So on your page you need to have an extra div to hold the pager items, and then in the radSLIDE settings you need to specify what the selector of that div is, and also specify how each individual slide should look inside the pagerAnchorBuilder function. Make sense?
———————————–This only returns the numbers….
Forum: Plugins
In reply to: [radSLIDE] radSLIDE don't work with SafariGood catch! Thank you. Unfortunately, it did not solve the issue. I also have another test going here: http://www.pixologyrules.com/clients/pixology/our-work/ and that seems to work just fine. I’m going to try to uninstall and then reinstall and see if that solves the problem for my first link.
Forum: Plugins
In reply to: [radSLIDE] radSLIDE don't work with SafariNo kidding? Will you look at my test site and tell me if they show up for you normal? http://www.pixologyrules.com/clients/sassyfit/
Forum: Plugins
In reply to: [radSLIDE] radSLIDE don't work with SafariLove the plugin but am not sure I can use it. There is a flaw in IE8—all of the images show, rather than displaying only the first one. Any fix coming?
Forum: Fixing WordPress
In reply to: Allow query_posts with the_content(‘more…’) remainProblem Solved! Apparently I did not research the topic well enough. Under “Overriding Archive/Single Page Behavior”
Forum: Fixing WordPress
In reply to: Embed code disappears (for some users) in WordPress 2.7Hey everyone … I found a plugin that allows for additional tags and is free. I’m not sure if anyone has already referenced this or not but thought I would share: Unfiltered MU (http://ww.wp.xz.cn/extend/plugins/unfiltered-mu/)
It worked for me adding a little form but not the youtube embed
Forum: Fixing WordPress
In reply to: Embed code disappears (for some users) in WordPress 2.7I have the same issue only I, as the super admin, cannot even embed HTML from Youtube or any forms (such as a pay pay button).
Is there anyone out there?!
Please help. Thank you.