What I found out was nested shortcodes work like in this one [edd_user_has_purchases]Shortcode Here[/edd_user_has_purchases]. But not in [edd_user_has_purchased ids=”20″]Shortcode Here[/edd_user_has_purchased]. But it’s fixed now.
if ( $has_purchased ) {
return $content;
}
Change return $content; to return edd_additional_shortcodes()->maybe_do_shortcode( $content );
Just gonna leave this here in case someone bumps in the same problem. Thanks!
-
This reply was modified 8 years, 11 months ago by caramel29.