- This topic has 1 reply, 2 voices, and was last updated 13 years, 3 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eMember › WP eMember Troubleshooting › Shortcodes not processed within restricted content shortcode
Hi,
I’d like to do the following:
[emember_protected scope=not_logged_in_users_only] [wp_eMember_registration] [/emember_protected]
But the inner shortcode is not processed by the outer one. Is is possible that a future update to the plugin could add a call to do_shortcode() before displaying the protected content?
That should already be working just the way you have it unless the shortcode filtering priorities are messed up in your WordPress installation. Try doing the following:
Open the “wp_eMember1.php” file and search for the following:
add_filter('the_content', 'do_shortcode',11);
Once you find it please change it the following:
add_filter('the_content', 'do_shortcode');