1. Home
  2. Jetpack CRM
  3. Misc
  4. Jetpack CRM and All in One SEO (AIOSEO) Compatibility

Jetpack CRM and All in One SEO (AIOSEO) Compatibility

Users of the All in One SEO (AIOSEO) plugin may experience problems while using the Client Portal module.

This happens because when AIOSEO parses shortcodes to generate data, it causes a conflict with the Client Portal shortcode.

Since AIOSEO version 4.2.0 was released on April 19 2022, disabling this behaviour is possible. This option should be disabled by default, and it is located in Search Appearance > Advanced > Run Shortcodes (as per AIOSEO version 4.2.4). You can find more information about this directly on their website.

For more advanced users who want to disable this option only for Jetpack CRM, the following code snippet can be used:

add_filter( 'aioseo_conflicting_shortcodes', 'aioseo_jetpackcrm_conflict_fix' );

function aioseo_jetpackcrm_conflict_fix( $conflicting_shortcodes ) {
	$conflicting_shortcodes = array_merge(
		$conflicting_shortcodes,
		array( 'Jetpack CRM Client Portal' => '[jetpackcrm_clientportal]' )
	);
	return $conflicting_shortcodes;
}

Please note that per our support policy, we provide limited support to bespoke snippets like the one above.

Updated on August 4, 2023
Was this article helpful?

Related Articles

Still not found an answer?
If you've searched the knowledge base and still can't find a solution, please submit a ticket.
CONTACT SUPPORT