Title: ewon's Replies | WordPress.org

---

# ewon

  [  ](https://wordpress.org/support/users/ewon/)

 *   [Profile](https://wordpress.org/support/users/ewon/)
 *   [Topics Started](https://wordpress.org/support/users/ewon/topics/)
 *   [Replies Created](https://wordpress.org/support/users/ewon/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/ewon/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/ewon/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/ewon/engagements/)
 *   [Favorites](https://wordpress.org/support/users/ewon/favorites/)

 Search replies:

## Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[radSLIDE] [Plugin: radSLIDE] Add Thumbnails w/ pagerAnchorBuilder](https://wordpress.org/support/topic/plugin-radslide-add-thumbnails-w-pageranchorbuilder/)
 *  Thread Starter [ewon](https://wordpress.org/support/users/ewon/)
 * (@ewon)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/plugin-radslide-add-thumbnails-w-pageranchorbuilder/#post-1802446)
 * Hi 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[radSLIDE] [Plugin: radSLIDE] Add Thumbnails w/ pagerAnchorBuilder](https://wordpress.org/support/topic/plugin-radslide-add-thumbnails-w-pageranchorbuilder/)
 *  Thread Starter [ewon](https://wordpress.org/support/users/ewon/)
 * (@ewon)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/plugin-radslide-add-thumbnails-w-pageranchorbuilder/#post-1802432)
 * I 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[radSLIDE] [Plugin: radSLIDE] Add Thumbnails w/ pagerAnchorBuilder](https://wordpress.org/support/topic/plugin-radslide-add-thumbnails-w-pageranchorbuilder/)
 *  Thread Starter [ewon](https://wordpress.org/support/users/ewon/)
 * (@ewon)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/plugin-radslide-add-thumbnails-w-pageranchorbuilder/#post-1802431)
 * I 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](http://codex.wordpress.org/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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[radSLIDE] radSLIDE don't work with Safari](https://wordpress.org/support/topic/radslide-dont-work-with-safari/)
 *  [ewon](https://wordpress.org/support/users/ewon/)
 * (@ewon)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/radslide-dont-work-with-safari/#post-1733686)
 * Good 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/](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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[radSLIDE] radSLIDE don't work with Safari](https://wordpress.org/support/topic/radslide-dont-work-with-safari/)
 *  [ewon](https://wordpress.org/support/users/ewon/)
 * (@ewon)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/radslide-dont-work-with-safari/#post-1733679)
 * No kidding? Will you look at my test site and tell me if they show up for you
   normal? [http://www.pixologyrules.com/clients/sassyfit/](http://www.pixologyrules.com/clients/sassyfit/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[radSLIDE] radSLIDE don't work with Safari](https://wordpress.org/support/topic/radslide-dont-work-with-safari/)
 *  [ewon](https://wordpress.org/support/users/ewon/)
 * (@ewon)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/radslide-dont-work-with-safari/#post-1733667)
 * Love 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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Allow query_posts with the_content(‘more…’) remain](https://wordpress.org/support/topic/allow-query_posts-with-the_contentmore-remain/)
 *  Thread Starter [ewon](https://wordpress.org/support/users/ewon/)
 * (@ewon)
 * [16 years, 10 months ago](https://wordpress.org/support/topic/allow-query_posts-with-the_contentmore-remain/#post-1186626)
 * Problem Solved! Apparently I did not research the topic well enough. [Under “Overriding Archive/Single Page Behavior”](http://codex.wordpress.org/Template_Tags/the_content)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Embed code disappears (for some users) in WordPress 2.7](https://wordpress.org/support/topic/embed-code-disappears-for-some-users-in-wordpress-27/)
 *  [ewon](https://wordpress.org/support/users/ewon/)
 * (@ewon)
 * [16 years, 11 months ago](https://wordpress.org/support/topic/embed-code-disappears-for-some-users-in-wordpress-27/page/2/#post-957807)
 * Hey 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://wordpress.org/extend/plugins/unfiltered-mu/](http://wordpress.org/extend/plugins/unfiltered-mu/))
 * It worked for me adding a little form but not the youtube embed
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Embed code disappears (for some users) in WordPress 2.7](https://wordpress.org/support/topic/embed-code-disappears-for-some-users-in-wordpress-27/)
 *  [ewon](https://wordpress.org/support/users/ewon/)
 * (@ewon)
 * [16 years, 11 months ago](https://wordpress.org/support/topic/embed-code-disappears-for-some-users-in-wordpress-27/page/2/#post-957806)
 * I 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.

Viewing 9 replies - 1 through 9 (of 9 total)