Header SEO Meta box

#19007
  • Resolved Zakhar Melnichenko
    Rank Math free

    Hello guys!

    Your plugin is so nice, but unfortunately I faced few problems:

    1 – My Descriptions did not import from Yoast (I wrote them all manually). Since I lost all my descriptions, I activated Yoast plugin back (to save my meta description) and remove Rank math SEO meta box from all pages.

    2 – How can I remove Schema from the category page? (http://prntscr.com/pqqb10 does not work)

    3 – Can I remove IsRelatedTo from product Schema? Seems like It just generated errors in my Schema

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello,

    Thank you for contacting Rank Math and sorry for any inconvenience that might have been caused due to that.

    1). I am glad that you were able to recover your meta descriptions, this may suggest that your server might have hit a limit during the import which made it impossible to complete the migration. Please note that it is not recommended to run two SEO plugins on the same site and you should disable Yoast as soon as the transfer is complete.

    2). You can add the following code snippet to your child theme’s functions.php file to remove the collection page schema:

    /**
     * Allow developers to remove snippet data from Taxonomies.
     *
     * @param bool $unsigned Default: false
     * @param string $unsigned Taxonomy Name
     */
    add_filter( 'rank_math/snippet/remove_taxonomy_data', function( $value, $taxonomy ) {
    	return $value; // true or false
    }, 10, 2);

    3). This is odd, could you please share one of the links affected by this so that we can test and advise further?

    Looking forward to helping you. Thank you.

    ​​​​​​​

    Hello Michael!

    1 – Can I be sure, that I will save my descriptions if I’ll disable Yoast? Seems like I was be able to get back my descriptions only after activating Yoast (so Rank Math duplicated all the meta descriptions). I really like use Rank Math, but seems like I can not import data from Yoast.

    2 –
    https://worldpharm365.com/product/cialis-tadalafil-tadalift-20mg-buy-with-bitcoin/ please take a look.

    Thanks so much in advance!

    Hello,

    Thank you for contacting Rank Math today.

    Yes this should be able to work, please perform a site+database backup and check if this issue will still be reproduced when Yoast is disabled.
    You can add the following code to your theme’s functions.php file to remove the isRelatedTo:

    add_filter( 'rank_math/snippet/rich_snippet_product_entity', function( $entity ) {
        if ( isset( $entity['isRelatedTo'] ) ) {
            unset( $entity['isRelatedTo'] );
        }
        return $entity;
    });

    Looking forward to helping you. Thank you.

    ​​​​​​

    Hello,

    Since we did not hear back from you for 15 days, we are assuming that you found the solution. We are closing this support ticket.

    If you still need assistance or any other help, please feel free to open a new support ticket, and we will be more than happy to assist.

    Thank you.

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

The ticket ‘Header SEO Meta box’ is closed to new replies.