• I only wish Schema was added without necessarily placing the code or editing theme files for the schema to appear on pages as it leads to duplication in some pages that already implement Breadcrumb.

    I really love this plugin though.

    4.99/5 but that option isn’t available.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Rank Math Support

    (@rankmathteam)

    Hello @vincentkk,

    Thank you for your feedback.

    The breadcrumbs code or the shortcode is necessary to render the actual breadcrumbs element on the front page as well as the Schema. At the moment, our breadcrumbs schema will only show together with our breadcrumbs element, so if you wish to apply our breadcrumbs Schema, you may need to disable the old breadcrumbs from other themes or plugins.

    If you really wish to keep the default breadcrumbs and use our breadcrumbs Schema, you may apply this filter code:

    add_filter( 'rank_math/frontend/breadcrumb/html', function( $html, $crumbs, $class ) {
    	// theme_breadcrumb_function();
    	$html = null;
    	return $html;
    }, 10, 3);

    Here is how to add filters to your website:
    https://rankmath.com/kb/wordpress-hooks-actions-filters/

    Hope that helps.

    Thread Starter Vincent

    (@vincentkk)

    Hello @rankmathteam

    Thank you for your feedback.

    I will find another way to address it.

    Regards.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Breadcrumb Schema’ is closed to new replies.