Home › Forums › Front End PM PRO › There is no wanted page to add Shortcode › Reply To: There is no wanted page to add Shortcode
July 2, 2018 at 3:36 pm
#15445
Shamim Hasan
Keymaster
add following code in your theme’s (child theme’s if any) functions.php
add_filter( 'fep_query_url_without_esc_filter', function( $url, $args ){
return add_query_arg( $args, 'https://example.com/user-account/#mg-inbox');
}, 10, 2);
Let me know.