Thanks so much Mikko!
that totally helped. I did go in and adjust one thing to make it work though. the add_filters I switched from “disabled” to “disable” once I made that change it worked perfectly. Thanks!
add_filter( 'relevanssi_disable_shortcodes', 'rlv_disable_shortcodes' );
add_filter( 'relevanssi_disable_shortcodes_excerpt', 'rlv_disable_shortcodes' );
function rlv_disable_shortcodes( $shortcodes ) {
$remove = array( 'templatera', 'gravityform', 'woodmart_ajax_search' );
return array_merge( $shortcodes, $remove );
}
-
This reply was modified 2 years, 6 months ago by hollistergj.