Has anyone encountered problems with shorcode content not parsing into the function ?

I have this html into the wordpress editor:

[scroller w="600" type="full-horizontal"]
<img src="http://localhost/wpmu/wp-content/themes/royale/defaultimages/slide21.jpg" alt="" /> <img src="http://localhost/wpmu/wp-content/themes/royale/defaultimages/slide21.jpg" alt="" /> <img src="http://localhost/wpmu/wp-content/themes/royale/defaultimages/slide21.jpg" alt="" />
[/scroller]

this php for the shortcode code

    function show_shortcode($atts, $content=null){
        $fout='';
        $w=940;
        $h=200;
        $type = 'simple';
        if(isset ($atts['type']))
            $type = $atts['type'];
        if(isset ($atts['w']))
            $w = $atts['w'];
        if(isset ($atts['h']))
            $h = $atts['h'];

        if($type=='full-horizontal'){
        $fout.='<div id="scroller'.$this->indexnr.'" class="scroller-con" style="width: '.$w.'px; height: '.$h.'px;">
            <div class="inner" style="width:10000px; height:'.$h.'px;">
            <span class="real-inner">';
        $fout.=$content;
        $fout.='</span></div></div>
            ';
        $fout.='<script>
            jQuery("#scroller'.$this->indexnr.'").scroller();
        </script>';
        }
        $this->indexnr++;
        return $fout;
    }

and this is what's outputed

<div id="scroller0" class="scroller-con" style="width: 600px; height: 200px;"> 
            <div class="inner" style="width:10000px; height:200px;"> 
            <span class="real-inner"></span></div></div> 
            <script> 
            jQuery("#scroller0").scroller();
        </script>
<img src="http://localhost/wpmu/wp-content/themes/royale/defaultimages/slide21.jpg" alt="" /> <img src="http://localhost/wpmu/wp-content/themes/royale/defaultimages/slide21.jpg" alt="" /> <img src="http://localhost/wpmu/wp-content/themes/royale/defaultimages/slide21.jpg" alt="" />[/scroller] 

so as you can see content is parsed as null even though I have content in the shortcode. Also I might add that other shortcode works ( for example layout ones )

Also, it works for me on MAMP and the problem only appears online on my wordpress network installation.

Thanks!

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.