From 9a54bc250e8d3eeaeca812b534c777b476ccfbdb Mon Sep 17 00:00:00 2001 From: Michael Thomas Date: Wed, 27 Mar 2024 16:29:59 -0400 Subject: [PATCH] chore: remove rate icons in plugin meta row --- wp-cloudflare-super-page-cache.php | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/wp-cloudflare-super-page-cache.php b/wp-cloudflare-super-page-cache.php index cec87cb..f894720 100644 --- a/wp-cloudflare-super-page-cache.php +++ b/wp-cloudflare-super-page-cache.php @@ -603,7 +603,6 @@ if( !class_exists('SW_CLOUDFLARE_PAGECACHE') ) { function actions() { add_filter( 'themeisle_sdk_products', array( $this, 'load_sdk' ) ); add_filter( 'plugin_action_links_' . plugin_basename(__FILE__), array($this, 'add_plugin_action_links') ); - add_filter( 'plugin_row_meta' , array($this, 'add_plugin_meta_links'), 10, 2 ); // Multilanguage add_action( 'plugins_loaded', array($this, 'load_textdomain') ); @@ -1092,25 +1091,6 @@ if( !class_exists('SW_CLOUDFLARE_PAGECACHE') ) { } - function add_plugin_meta_links($meta_fields, $file) { - - if ( plugin_basename(__FILE__) == $file ) { - - $meta_fields[] = ' - ' - . '' - . '' - . '' - . '' - . '' - . ''; - - } - - return $meta_fields; - } - - function get_cloudflare_api_zone_id() { if( defined('SWCFPC_CF_API_ZONE_ID') )