[ad_1]
Hello @jdtravel,
Thank you for contacting support.
Our plugin will only add the URL of the posts into the Schema markup but since you require more information and have already included custom markup for that you can remove our CollectionPage Schema with the following filter:
add_filter( 'rank_math/json_ld', function( $data, $jsonld ) {
if ( is_home() ) {
unset( $data['WebPage'] );
}
return $data;
}, 99, 2);Hope this helps solve your issues.
Don’t hesitate to get in touch if you have any other questions.
