How to Remove Rank Math’s Live Blog Feed from WP Admin Dashboard

#660634
Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello,

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

    You can use the following filter on your website to hide this blog list from WP dashboard:

    function remove_rm_blog_list(){
        echo '<style>
       .rank-math-blog-title {
          display: none !important;
       }
       .rank-math-blog-list {
          display: none !important;
       }
    </style>';
    }
    add_action('admin_head', 'remove_rm_blog_list'); 
    

    Here’s how you can add filter/hook to your WordPress site: https://rankmath.com/kb/wordpress-hooks-actions-filters/

    Hope that helps and please don’t hesitate to let us know if you have any other questions.
     
    Thank you.

    AeroStar
    Rank Math free

    Hi Rakibuzzaman,

    Thank you so much. Your filter worked for most part, but we’re still getting a RSS feed error.

    Details: https://prnt.sc/2ydd1g2YM6GX

    We checked everything … disabled all plugins except RM, disabled Cloudflare, downgraded to PHP 7.4.33, downgraded RM to 1.0.201, checked REST API connectivity, and cleared cached.

    Could this be an issue related to WP 6.3.2?

    Any ideas what’s going on?

    Thank you!

    AeroStar
    Rank Math free

    Hi Rakibuzzaman,

    Adding to my last update:

    – We also cleared all transients, rebuilt RM’s tables, etc. using RM’s tools.
    – All of our other RSS feeds (i.e., Avada, WordPress, etc.) are working just fine.

    So, perhaps there’s something happening at your end.

    Again, we haven’t seen this before after using RM for over 3 years.

    Hope this helps.

    Thank you!

    Hello,

    We aren’t able to replicate this issue on our end.

    Can you please take a screencast with your browser console open so we can see any console errors when you load the dashboard page? This should help us determine what’s causing the issue.

    With that said, since you have removed other elements from the blog feed, you may try this modified code instead:

    function remove_rm_blog_list(){
    	echo '<style>
     .rank-math-blog-title, .rank-math-blog-title + p, .rank-math-blog-list {
    		display: none !important;
     }
    </style>';
    }
    add_action('admin_head', 'remove_rm_blog_list'); 

    Hope that helps and please do not hesitate to let us know if you need my assistance with anything else.

    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 4 replies - 1 through 4 (of 4 total)

The ticket ‘How to Remove Rank Math’s Live Blog Feed from WP Admin Dashboard’ is closed to new replies.