How do I remove text generated by rank math in the admin product page.

#1009469
  • Resolved Ramiro Lozano
    Rank Math free

    I just installed the plugin it appears to have created a new column in the admin products page which makes it difficult to navigate through the products. The new column has this text on each single product:
    Keyword: Not Set
    Schema: WooCommerce Product
    Links: 0 0 0

    The bad part is that is displayed in one long line like this:
    K
    e
    y
    w
    o
    r
    d
    :

    N
    o
    t

    S
    e

    t

    S
    c
    h
    e
    m
    a
    :

    W
    o
    o
    C
    o
    m
    m
    e
    r
    c
    e

    P
    r
    o
    d
    u
    c

    t
    L
    i
    n
    k
    s
    :
    0
    0
    0

    How do i remove it thank you.

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

    We apologize for the issue you are facing with the Rank Math plugin displaying text in a long line on the admin product page. To remove the text generated by Rank Math in the admin product page, you can use a custom code snippet to hide that specific column.

    Here’s how you can do it:

    1. Add a Custom Code Snippet: You can add the following code to your theme’s functions.php file or use a plugin like Code Snippets to manage your custom code.

      add_filter('manage_edit-product_columns', function($columns) {
         unset($columns['rank_math']); // Adjust 'rank_math' to the actual column key if different
         return $columns;
      });
    2. Save Changes: After adding the code, make sure to save the changes.

    This should remove the unwanted column from your admin product page, making it easier to navigate through your products.

    If you need further assistance or if this does not resolve the issue, please reply to this ticket, and a human agent from the Rank Math Support team will assist you further. Thank you for raising this concern!

    It does not work. I would at least like for it to display correctly.

    Hello,

    Thank you for your query and we are so sorry about the trouble this must have caused.

    Please follow this quick guide to help you resolve that: https://rankmath.com/kb/woocommerce-products-page-misaligned/

    Looking forward to helping you.

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

You must be logged in to reply to this ticket.