Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author arnaudbroes

    (@arnaudbroes)

    Hey @jdegayojr,

    Shortcodes sometimes conflict with AIOSEO because we parse them to determine the title/description of the page.

    Can you try adding this code snippet to your theme’s functions.php file and see if that helps?

    add_filter( 'aioseo_conflicting_shortcodes', 'aioseo_filter_conflicting_shortcodes' );
    
    function aioseo_filter_conflicting_shortcodes( $conflictingShortcodes ) {
       $conflictingShortcodes = array_merge( $conflictingShortcodes, [
    		'WISDM Group Registration' => '[wdm_group_users]',
       ] );
       return $conflictingShortcodes;
    }

    Just replace “WISDM Group Registration” with a random identifier and “[wdm_group_users]” with the shortcode that you are using.

    Plugin Support Steve M

    (@wpsmort)

    Hi @jdegayojr,

    We haven’t heard back from you in a couple of weeks, so I’m going to go ahead and close this thread for now. But if you’d like us to assist, please feel welcome to continue the conversation.

    Thanks! ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Template no display after form submit’ is closed to new replies.