WordPressDemo / WP-Demo

1 stars 0 forks source link

allow shortcodes to parse #17

Closed bearded-avenger closed 10 years ago

bearded-avenger commented 10 years ago
            function is_sandbox_shortcode( $atts, $content = null ) {
                if ( WPDemoSite::isGeneratedSite() ) {
                    return $content;
                }

                return '';
            }

This is causing this: image 2014-10-08 at 4 46 51 pm

Can you please update to accommodate?

echo do_shortcode($content);

dovy commented 10 years ago

So sorry. @bfintal can you make this change?

My newborn baby just went into the hospital again. I am out of commission for at least this week. Sorry.

bearded-avenger commented 10 years ago

sorry to hear guys. :(

i edited my copy to allow this so I'm good on this one, not a rush. this however I was hoping for a fix on if at all possible: https://github.com/WordPressDemo/WP-Demo/issues/16

bfintal commented 10 years ago

Applied in all return $content instances in class-shortcode.php

bfintal commented 10 years ago

v1.0.8 that fixes this is now out :)

bearded-avenger commented 10 years ago

Much appreciated!