Support » Plugin: Featured Content Showcase » [Plugin: Featured Content Showcase] nothing showing up in ie6,ie7,ie8

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter robfelty

    (@robfelty)

    I fixed it. It turns out that it was an extra comma in the galleryView options. To fix it – in featured-content-showcase.php look for galleryView({

    replace that line all the way to the matching
    })
    with:

    jQuery('#photos').galleryView({
    <?php
        $i=1;
        $comma=',';
        foreach ( $this->_settings['featured-content-showcase'] as $setting => $value ) {
          if ($i==count($this->_settings['featured-content-showcase']))
            $comma='';
          if ( !in_array($setting, array('use_fcs_css', 'filmstrip_margin') ) ) {
            if ( is_string($value) ) {
              $value = "'" . esc_js($value) . "'";
            } elseif ( is_bool($value) ) {
              $value = ($value)? 'true':'false';
            }
            if ( strpos( $setting, 'opacity' ) !== false ) {
              $value /= 100;
            }
            echo "{$setting}: {$value}$comma\r\n";
          }
          $i++;
        }
    ?>
              });

    Evo

    (@shane_tactical1)

    Thanks for this man! I couldnt figure out why it didnt work in IE7 but worked in Firefox. I did the same thing with the visibility hidden and couldnt figure it out so cheers! Saved me a few hours im sure.

    Plugin Author Aaron D. Campbell

    (@aaroncampbell)

    Sorry that I missed this. Version 0.2.4 (already checked in…should be available in about 15 minutes) fixes this issue

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Featured Content Showcase] nothing showing up in ie6,ie7,ie8’ is closed to new replies.