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:
-
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;
});
-
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.